play method

Future<void> play([
  1. int delay = 0
])

Implementation

Future<void> play([int delay = 0]) async{
  await audioSource.play(delay);
}