Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeiffer committed Oct 5, 2024
1 parent 9e9ab5f commit 29834b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
* Adds `path` to `Map`, `List`, and `String` objects to find the json path value.
* Adds `NumberFormat` as an option
* Adds `format` to all `num` types to apply the `NumberFormat` pattern.
* Adds `format` to `DateTime` to simplify applying a Date / Time formatter to them.


## [3.2.0+9] - June 11, 2024

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ DateTime(List<int> yearMonthDateHourMinuteSecondMillisecond)
| [add](https://api.flutter.dev/flutter/dart-core/DateTime/add.html) | `${now().add(minutes(5))}` |
| add(int millis) | `${now().add(30000)}` |
| [compareTo](https://api.flutter.dev/flutter/dart-core/DateTime/compareTo.html) | `${now().compareTo(other)}` |
| format(String pattern) | `${now().format('yyyy-MM-dd')}
| [isAfter](https://api.flutter.dev/flutter/dart-core/DateTime/isAfter.html) | `${now().isAfter(other)}` |
| [isBefore](https://api.flutter.dev/flutter/dart-core/DateTime/isBefore.html) | `${now().isBefore(other)}` |
| [isUtc](https://api.flutter.dev/flutter/dart-core/DateTime/isUtc.html) | `${now().isUtc}` |
Expand Down

0 comments on commit 29834b5

Please sign in to comment.