data_parser 0.0.6
data_parser: ^0.0.6 copied to clipboard
A Flutter package for parsing and converting various data types, including JSON, HTTP responses, files, and common Flutter types like Color, IconData, and TextStyle.
Changelog #
All notable changes to this project will be documented in this file.
0.0.5 #
- added double_extensions file.
- added int_extensions.
- added string_extensions.
0.0.4+1 #
- added string extension.
0.0.4 #
- update extensions file.
- add json parser file.
- add helper Data file.
- add helper Utility Parsers file.
0.0.3 #
- update example file.
0.0.2 #
Added #
- HttpResponseDataParserImpl: Class to parse HTTP response data, handling the "status" and "data" fields in JSON responses.
- ListDataParserServiceImpl: Class to parse lists of data with methods to convert them using custom converters.
- FileToBase64String: Extension on
Fileclass to convert files to Base64 encoded strings. - ColorJsonHelper: Helper class to convert
Colorobjects to and from JSON. - IconDataJsonHelper: Helper class to convert
IconDataobjects to and from JSON. - TextStyleJsonHelper: Helper class to convert
TextStyleobjects to and from JSON. - enumFromString: Utility function to convert strings to enum values.
- EnumUtils: Helper method to convert enum values to strings.