getPlatformVersion method
Returns the platform version string.
Platform implementations should override this method to return the actual platform version.
Implementation
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>(
'getPlatformVersion',
);
return version;
}