humanName property
The human-friendly name for this RoverType.
Implementation
String get humanName {
switch(this) {
case rover: return "Rover";
case tank: return "Tank";
case localhost: return "Local";
}
}
The human-friendly name for this RoverType.
String get humanName {
switch(this) {
case rover: return "Rover";
case tank: return "Tank";
case localhost: return "Local";
}
}