getPlatformVersion method

Future<String?> getPlatformVersion()

Get platform version.

Returns the version of the platform-specific implementation. This is typically used for debugging and compatibility checks.

Implementation

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