getAllAvailableAudioInput method

  1. @override
Future getAllAvailableAudioInput()
override

Implementation

@override
Future<dynamic> getAllAvailableAudioInput() async {
  dynamic audioInput;
  try {
    LogMessage.d('getAllAvailableAudioInput :', '');
    audioInput = await mirrorFlyCallMethodChannel.invokeMethod('getAllAvailableAudioInput');
    return audioInput;
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception ===>", "$e");
    rethrow;
  } on Exception catch (error) {
    LogMessage.d("Exception ==>", "$error");
    rethrow;
  }
}