getOS static method
Implementation
static String getOS() {
if (kIsWeb) {
return 'web-browser';
} else {
return <String>[
Platform.operatingSystem,
Platform.operatingSystemVersion,
].join('-');
}
}
static String getOS() {
if (kIsWeb) {
return 'web-browser';
} else {
return <String>[
Platform.operatingSystem,
Platform.operatingSystemVersion,
].join('-');
}
}