toDateStringDDMMMMYYYY method

String toDateStringDDMMMMYYYY({
  1. String locale = "ID",
})

Implementation

String toDateStringDDMMMMYYYY({String locale = "ID"}) {
  if (this == null) return '-';
  return DateFormat(
    "dd MMMM yyyy",
    locale,
  ).format(this ?? DateTime.now());
}