getFormatedDateSMSLOGDDMM method

String getFormatedDateSMSLOGDDMM(
  1. dynamic dateToFormat
)

Implementation

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