second property - DateTime class - dart:core library (original) (raw)
int getsecond
The second [0...59]
.
final moonLanding = DateTime.parse('1969-07-20 20🔞04Z');
print(moonLanding.second); // 4
Implementation
external int get second;
int getsecond
The second [0...59]
.
final moonLanding = DateTime.parse('1969-07-20 20🔞04Z');
print(moonLanding.second); // 4
external int get second;