getPlatformVersion method

Future<String?> getPlatformVersion()

Example method to get platform version (for plugin interface compatibility)

Implementation

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