getPlatformVersion method
Host OS and version, for checking the bridge is alive. See
AppwinSupport.getPlatformVersion.
Implementation
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>(
'getPlatformVersion',
);
return version;
}