day property Null safety
The day of the month [1..31]
.
var moonLanding = DateTime.parse("1969-07-20 20:18:04Z");
assert(moonLanding.day == 20);
Implementation
external int get day;
The day of the month [1..31]
.
var moonLanding = DateTime.parse("1969-07-20 20:18:04Z");
assert(moonLanding.day == 20);
external int get day;