play method

Future<void> play({
  1. required String path,
  2. double volume = 1.0,
  3. bool loop = false,
})

Play audio from the given path

Implementation

Future<void> play({
  required String path,
  double volume = 1.0,
  bool loop = false,
}) {
  throw UnimplementedError('play() has not been implemented.');
}