storage property
The nested storage map holding form field values, supporting dynamic key access with dot notation for hierarchy.
This field is final and required, initialized with an empty map or pre-populated data. It uses Map<String, dynamic> to allow flexible typing for nested structures, with null safety handled via ??= during setting to create missing sub-maps.
Implementation
final Map<String, dynamic> storage;