formatHour method

String formatHour(
  1. TimeOfDay timeOfDay, {
  2. bool alwaysUse24HourFormat = false,
})

Implementation

String formatHour(
  TimeOfDay timeOfDay, {
  bool alwaysUse24HourFormat = false,
}) =>
    materialLocalizations.formatHour(
      timeOfDay,
      alwaysUse24HourFormat: alwaysUse24HourFormat,
    );