timeOfDay24 property

String? get timeOfDay24

Implementation

String? get timeOfDay24 {
  try {
    return DateFormat('HH:mm').format(this);
  } catch (_) {
    return null;
  }
}