static EllaTime? tryParse(String value) { try { if (value.isNotEmpty) { return parse(value); } } catch(e) { // Forgiven & forgotten } return null; }