getPlatformVersion method
Returns a platform-specific version string from the native plugin.
Implementation
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>(
"getPlatformVersion",
);
return version;
}