stopAllPlayers method

Future<bool> stopAllPlayers()

Implementation

Future<bool> stopAllPlayers() async {
  var result = await _methodChannel.invokeMethod(Constants.stopAllPlayers);
  return result ?? false;
}