formatLong method

String formatLong([
  1. String locale = 'en_US'
])

Formats the date in long format (e.g., "December 1, 2025")

Implementation

String formatLong([String locale = 'en_US']) {
  return DateFormatters.formatDateLong(this, locale);
}