A Dart library to manipulate DateTimes. Useful for creating calendar functionality.
See Packages:
- Add the following to your pubspec.yaml:
dev_dependencies:
date_utils: ^0.2.0Run
dart pub getImport the package in your Dart code
import'package:date_utils/date_utils.dart';- Use the
Utilsclass.
// examplevar date =newDateTime(2017, 3);
var lastDay =Utils.lastDayOfMonth(date);
print(lastDay.day);
// => 31