month property

int? month

The month [1..12].

Returns null if this is null

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;