bindPlayerAudio method

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

Implementation

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