totalDaysInMonth property

int get totalDaysInMonth

Implementation

int get totalDaysInMonth => month == 13
    ? year % 4 == 3
        ? 6
        : 5
    : 30;