formatDate static method

String formatDate(
  1. String date
)

Implementation

static String formatDate(String date) {
  if (date.isEmpty) return '';
  DateFormat f = DateFormat.yMd(Get.locale!.toLanguageTag());
  DateTime dt = toDate(date);
  return f.format(dt);
}