toFormattedDate method
Formats a nullable date for display.
Implementation
String toFormattedDate({
String format = defaultDateFormat,
String fallback = DateFormatter.fallback,
String? locale,
}) {
return DateFormatter.format(
this,
pattern: format,
fallbackValue: fallback,
locale: locale,
);
}