getPlatformVersion method

Future<String?> getPlatformVersion()

Retrieves the platform version from the native implementation.

Throws an UnimplementedError if the method is not implemented by the platform.

Implementation

Future<String?> getPlatformVersion() {
  throw UnimplementedError('getPlatformVersion() has not been implemented.');
}