getPlatformVersion static method

Future<String?> getPlatformVersion()

Implementation

static Future<String?> getPlatformVersion() async {
  String version = await methodChannel.invokeMethod('getPlatformVersion');
return version;
}