getPlatformVersion method
Retrieves the platform version.
Returns a future that resolves to the platform version string.
Implementation
@override
Future<String?> getPlatformVersion() async {
final version =
await methodChannel.invokeMethod<String>(Method.GET_PLATFORM_VERSION);
return version;
}