dateFormatMMMM static method

String dateFormatMMMM(
  1. DateTime? time
)

Implementation

static String dateFormatMMMM(DateTime? time) {
  return DateFormat(
          "MMMM",
          LocalStorage.getLanguage() == "kiril"
              ? "uz"
              : LocalStorage.getLanguage())
      .format(time ?? DateTime.now());
}