getOS static method
Implementation
static String getOS() {
if (kIsWeb) {
// TODO change this into an actual value
return 'web-browser';
} else {
return <String>[
Platform.operatingSystem,
sanitizeOSVersion(Platform.operatingSystemVersion),
].join('-');
}
}