toHourAbbreStr property

String toHourAbbreStr

Returns the time in HH:MM 24h format.

Implementation

String get toHourAbbreStr {
  final hour = this.hour.toString().padLeft(2, '0');
  final min = minute.toString().padLeft(2, '0');

  return '${hour}h$min';
}