name property
String
get
name
Implementation
String get name {
switch (this) {
case DeviceType.bp:
return "bp";
case DeviceType.bt:
return "bt";
case DeviceType.bc:
return "bc";
case DeviceType.be:
return "be";
case DeviceType.oc:
return "oc";
case DeviceType.ms:
return "ms";
case DeviceType.pr:
return "pr";
case DeviceType.bg:
return "bg";
case DeviceType.dd:
return "dd";
case DeviceType.zl:
return "zl";
case DeviceType.zi:
return "zi";
default:
return "";
}
}