toEpochSeconds method
Converts the date to epoch seconds.
Implementation
int? toEpochSeconds() =>
this == null ? null : (this!.millisecondsSinceEpoch ~/ 1000);
Converts the date to epoch seconds.
int? toEpochSeconds() =>
this == null ? null : (this!.millisecondsSinceEpoch ~/ 1000);