getPlatformVersion method
Gets the platform version for compatibility checking
Returns a string identifying the current platform version
Implementation
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>(
'getPlatformVersion',
);
return version;
}