getPlatformVersion method
Get platform version (legacy method for backward compatibility)
Implementation
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>(
'getPlatformVersion',
);
return version;
}