formatMonthYear method

String formatMonthYear(
  1. DateTime dateTime
)

Implementation

String formatMonthYear(DateTime dateTime) {
  return DateFormat('MMMM yyyy').format(dateTime);
}