formatShort method

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

Formats the date in short format (e.g., "12/1/2025")

Implementation

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