stop method

Future<String?> stop(
  1. String playerId
)

Implementation

Future<String?> stop(String playerId) async {
  return await _methodChannel.invokeMethod(
    'stop',
    {'playerId': playerId},
  );
}