New
v0.45.0
- FEAT: Add dot notation support for nested form values in
ShadForm. Field IDs likeuser.emailare automatically converted to nested maps like{'user': {'email': value}}. TheinitialValueshould be provided as a nested map structure, and the form will automatically extract values based on field IDs. - FEAT: Add
fieldIdSeparatorparameter toShadFormto customize the separator used for nested form values (defaults to.). You can use any string as a separator (e.g./,:), or set it tonullto disable dot notation support entirely. - FEAT: Add
toNestedMap,getByPathanddeepMergeextension methods onMap<String, dynamic>. - FEAT: Add
deepCopyextension method toMap,ListandSetto create deep copies of collections.