getPlatformVersion method

Future<String?> getPlatformVersion()

Retrieves the platform's version string.

Returns a String containing platform version information or null if unavailable.

Example:

final version = await MediaManagerPlatform.instance.getPlatformVersion();

Implementation

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