getPlatformVersion method

Future<String?> getPlatformVersion()

Retrieves the version of the platform-specific implementation.

Returns a String representing the platform version, or null if not available.

Implementation

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