json_converters_lite 1.0.3
json_converters_lite: ^1.0.3 copied to clipboard
Easily convert common Dart data types into a json compatible ones.
Changelog #
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased #
1.0.1 #
1.0.0 #
Added #
- Initial Release including 5 converters:
- BoolConverter, which converts a
boolto anint. - DateTimeConverter, which converts a
DateTimeto theISO8601string. - DurationConverter, which gets a total amount of seconds from
Duration. - EnumConverter, which serializes
Enumvalue as string from it's name. - IterableConverter, which takes the other
converteras an argument and serializes each value in theIterablewith that converter.
- BoolConverter, which converts a