month property
int
get
month
The month [1..12]
.
final moonLanding = DateTime.parse('1969-07-20 20:18:04Z');
print(moonLanding.month); // 7
assert(moonLanding.month == DateTime.july);
Implementation
int get month => value.month;