getDate static method

String getDate(
  1. DateTime dateTime
)

Implementation

static String getDate(DateTime dateTime) {
  final dateFormat = DateFormat(DateTimeFormatConstants.ddMMyyyy);
  return dateFormat.format(dateTime);
}