toShortDate method

String toShortDate({
  1. JBLocale? locale,
})

Format: 'MMM dd, yyyy' → Example: 'Feb 15, 2025'

Implementation

String toShortDate({JBLocale? locale}) {
  return DateFormat('MMM dd, yyyy', locale?.name ?? App.localeCode).format(toJBTimezone());
}