getFormattedDate method
Implementation
String? getFormattedDate({required DateFormat defaultDateFormat}) {
return this == null ? null : defaultDateFormat.format(this!);
}
String? getFormattedDate({required DateFormat defaultDateFormat}) {
return this == null ? null : defaultDateFormat.format(this!);
}