getId static method
Implementation
static String getId() {
if (kIsWeb) {
return 'web';
} else {
if (Platform.isAndroid) {
return 'android';
} else if (Platform.isIOS) {
return 'ios';
} else if (Platform.isLinux) {
return 'linux';
} else if (Platform.isMacOS) {
return 'macos';
} else if (Platform.isWindows) {
return 'windows';
} else {
return 'unknown';
}
}
}