getPlatformVersion method

  1. @override
Future<String?> getPlatformVersion()
override

Get platform version.

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

Implementation

@override
Future<String?> getPlatformVersion() async {
  return 'Web';
}