date_utils 0.0.2 date_utils: ^0.0.2 copied to clipboard
A Dart library for manipulating DateTimes.
date_utils #
A Dart library to manipulate DateTimes. Useful for creating calendar functionality.
Example #
See Packages:
Usage #
- Add the following to your pubspec.yaml:
dev_dependencies:
date_utils: ^0.0.1
-
Run
pub install
-
Import the package in your Dart code
import 'package:date_utils/date_utils.dart';
- Use the
Utils
class.
// example
var date = new DateTime(2017, 3);
var lastDay = Utils.lastDayOfMonth(date);
print(lastDay.day);
// => 31