platformVersion property Null safety
Future method to get android version of the device
Implementation
static Future<String> get platformVersion async {
final version = await _channel.invokeMethod('getPlatformVersion');
return version == null ? "" : version;
}