isShareDeviceAudioEnabled method

  1. @override
Future<bool> isShareDeviceAudioEnabled()
override

Implementation

@override
Future<bool> isShareDeviceAudioEnabled() async {
  return await methodChannel
      .invokeMethod<bool>('isShareDeviceAudioEnabled')
      .then<bool>((bool? value) => value ?? false);
}