resume method

Future<bool?> resume()

恢复播放

Implementation

Future<bool?> resume() async {
  try {
    return await _channel.invokeMethod<bool>('resume', {});
  } on PlatformException catch (e) {
    debugPrint('Failed to resume');
    return false;
  }
}