getPlatformVersion method
Implementation
@override
Future<String?> getPlatformVersion() async {
try {
final String? version = await _invokeMethodWithTimeout<String>(
'getPlatformVersion',
);
return version;
} catch (e) {
_logError('getPlatformVersion', e);
rethrow;
}
}