toDateStringUK method

String? toDateStringUK({
  1. String format = "dd/MM/yyyy",
})

Format DateTime to toDateString - yyyy-MM-dd

Implementation

String? toDateStringUK({String format = "dd/MM/yyyy"}) {
  return toDateString(format: format);
}