getPlatformVersion method

Future<String?> getPlatformVersion()

The platform version reported by this implementation.

Throws an UnimplementedError when a platform plugin does not override this method.

Implementation

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