getAllValues method

Map<String, String> getAllValues()

Implementation

Map<String, String> getAllValues() {
  return Map.fromEntries(
    _fields.entries.map((e) => MapEntry(e.key, e.value.currentState?.value ?? '')),
  );
}