play method
Plays the current audio source at the current index and position.
Implementation
@override
Future<PlayResponse> play(PlayRequest request) async {
return PlayResponse.fromMap((await _channel
.invokeMethod<Map<dynamic, dynamic>>('play', request.toMap()))!);
}