toMonthDate property

String get toMonthDate

Implementation

String get toMonthDate => (this == null)
    ? ""
    : "${DateFormat('MMMM d').format(this!)}${getDayOfMonthSuffix(this!.day)}";