hour property Null safety

int hour

The hour of the day, expressed as in a 24-hour clock [0..23].

final moonLanding = DateTime.parse('1969-07-20 20:18:04Z');
print(moonLanding.hour); // 20

Implementation

external int get hour;