platformVersions property
Get the platform version of the native platform
return platformVersions
Implementation
static Future<String> get platformVersions async {
final String version = await _channel.invokeMethod('getPlatformVersion');
return version;
}