getPlatformVersion method
Implementation
@override
Future<String?> getPlatformVersion() async {
try {
final version = await methodChannel
.invokeMethod<String>('getPlatformVersion')
.timeout(methodTimeout);
return version;
} catch (e, stack) {
debugPrint('AudioPicker: getPlatformVersion error: $e\n$stack');
return null;
}
}