Returns the platform version from the native side (e.g. "Android 13")
static Future<String> get platformVersion async { final String version = await _channel.invokeMethod('getPlatformVersion'); return version; }