unBindPlayerAudio method

  1. @override
Future<void> unBindPlayerAudio()
override

Implementation

@override
Future<void> unBindPlayerAudio() async {
  try {
    await methodChannel.invokeMethod('unbind');
  } on PlatformException catch (e) {
    log("调用失败: '${e.message}'.");
  }
}