getPlatformVersion method
Retrieves the platform version of the iOS device.
Implementation
@override
Future<String> getPlatformVersion() async {
String version = await methodChannel.invokeMethod(
"$healthKitPrefix/$platformVersionSuffix",
);
return version;
}