sloth_datetime 1.0.0+1
sloth_datetime: ^1.0.0+1 copied to clipboard
Extensions for the DateTime class
example/sloth_datetime_example.dart
import 'package:sloth_datetime/sloth_datetime.dart';
void main() {
// get secondsSinceEpoch
int seconds = DateTime.now().secondsSinceEpoch;
print("Seconds since epoch $seconds s");
}