getFormatedDateSMSLOGMMYYYY method

String getFormatedDateSMSLOGMMYYYY(
  1. dynamic dateToFormat
)

Implementation

String getFormatedDateSMSLOGMMYYYY(dateToFormat) {
  return DateFormat("MMMM yyyy").format(
      DateFormat("yyyy-MM-ddThh:mm:ss").parse(dateToFormat.toString()));
}