readableDateTime method

String readableDateTime([
  1. dynamic locale
])

Readable DateTime

Returns date and time string in the format January 12, 2022 08:00:15

Implementation

String readableDateTime([dynamic locale]) => "${monthName(locale)} $day, $year ${hour.fixedLength(2)}:${minute.fixedLength(2)}:${second.fixedLength(2)}";