year property Null safety
The year.
Returns null if this is null
final moonLanding = DateTime.parse('1969-07-20 20:18:04Z');
print(moonLanding.year); // 1969
Implementation
int? get year => _value?.year;
The year.
Returns null if this is null
final moonLanding = DateTime.parse('1969-07-20 20:18:04Z');
print(moonLanding.year); // 1969
int? get year => _value?.year;