parsable 0.1.0
parsable: ^0.1.0 copied to clipboard
Type-safe map parsing for Dart. Simplifies extracting values from Map<String, dynamic> with automatic type conversion and nested object support.
0.1.0 #
- Initial release of Parsable
- Type-safe map parsing with generic
get<T>()method - List parsing with
getList<T>()method - easily parse lists of objects - Automatic numeric type conversions (int ↔ double)
- Support for nested objects with parser functions
- Integration with Equatable for value equality
- Configurable error handling via
setOnParseError() - Ability to toggle numeric conversions with
handleNumericConversions() - Full null safety support
- Comprehensive documentation and examples
- 39 unit tests with 100% passing rate