isSameMonthWith method

bool isSameMonthWith(
  1. DateTime dateB
)

Returns true if the two DateTime objects have the same month and year, or are both null.

Implementation

bool isSameMonthWith(DateTime dateB) =>
    material.DateUtils.isSameMonth(this, dateB);