getPlatformVersion method
Returns the browser's user agent string as the platform version.
Example: Mozilla/5.0 (Windows NT 10.0; Win64; x64)...
Implementation
@override
Future<String> getPlatformVersion() async {
final version = web.window.navigator.userAgent;
return version;
}