stopPlayback method

Future<void> stopPlayback()

Implementation

Future<void> stopPlayback() async {
  try {
    final int result = await _channel.invokeMethod('stopPlayback');
  } on PlatformException catch (e) {
    print("Error from native: $e.message");
  }
}