stopPlayback static method

Future<bool> stopPlayback()

停止回放

Implementation

static Future<bool> stopPlayback() async {
  await _channel.invokeMethod("stopPlayback");
  return true;
}