instantValue property

Map<String, dynamic> get instantValue

Get all fields values of form.

Implementation

Map<String, dynamic> get instantValue => Map<String, dynamic>.unmodifiable(
  _instantValue.map(
    (key, value) => MapEntry(
      key,
      _transformers[key] == null ? value : _transformers[key]!(value),
    ),
  ),
);