getPlatformVersion method
Returns the host platform's version string (e.g. "Android 14").
Used as a smoke test that the channel is wired up.
Implementation
@override
Future<String?> getPlatformVersion() async {
return methodChannel.invokeMethod<String>('getPlatformVersion');
}