getPlatformVersion method
Retrieves the platform version from the native implementation.
Returns a Future containing the platform version as a String, or null
if unavailable.
Implementation
@override
Future<String?> getPlatformVersion() async {
final version =
await methodChannel.invokeMethod<String>('getPlatformVersion');
return version;
}