Creates a new unit speed from a string
static UnitSpeed fromString(String symbol) { return UnitSpeed.values.firstWhere((e) => e.symbol == symbol); }