play method

  1. @override
Future<void> play(
  1. double at
)
override

Plays the current audio source at the current index and position.

Implementation

@override
Future<void> play(double at) async {
  return  _channel.invokeMethod('play',_invokeMethod(<dynamic, dynamic>{'time':at}));
}