formatMedium method

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

Formats the date in medium format (e.g., "Dec 1, 2025")

Implementation

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