getDate static method

String getDate(
  1. DateTime dateTime, {
  2. String? format,
})

Implementation

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