getDefaultMicrophones method
Abstract method to get the default microphones. This will throw an UnimplementedError unless overridden by a platform-specific class.
Implementation
Future<List<dynamic>> getDefaultMicrophones() {
throw UnimplementedError(
'getDefaultMicrophones() has not been implemented.');
}