static Unit? fromName(String name) { for (var unit in values) { if (unit.name == name) return unit; } return null; }