month property

int month
override

The month 1..13.

var covid19Confirmed = EtDatetime.parse("2012-07-04 13:18:04Z");
assert(moonLanding.month == 7);

Implementation

int get month => (((fixed - _fixedFromEthiopic(year, 1, 1)) ~/ 30) + 1);