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