humanName property

String get humanName

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";
  }
}