values property
Returns a snapshot map of all current field string values keyed by field name.
Implementation
Map<String, String> get values => {
for (final entry in _fields.entries)
entry.key: entry.value is BloomFormField
? (entry.value as BloomFormField).value.value
: entry.value.rawValue?.toString() ?? '',
};