rawValue property
Returns an unmodifiable view of the current form values without transformations applied
Implementation
Map<String, dynamic> get rawValue {
final base = Map<String, dynamic>.from(initialValue.deepCopy());
final result = widget.fieldIdSeparator != null
? base.deepMerge(
_value.toNestedMap(separator: widget.fieldIdSeparator!),
)
: base.deepMerge(_value);
return Map<String, dynamic>.unmodifiable(result);
}