unBindPlayerAudio method

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

Implementation

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