DynamicFormFields constructor

const DynamicFormFields({
  1. Key? key,
  2. required List<DocumentField> fields,
  3. required Map<String, String> values,
  4. required void onChanged(
    1. Map<String, String>
    ),
  5. bool showLabels = true,
  6. Color? primaryColor = Colors.blue,
  7. Color? backgroundColor = Colors.white,
})

Implementation

const DynamicFormFields({
  super.key,
  required this.fields,
  required this.values,
  required this.onChanged,
  this.showLabels = true,
  this.primaryColor = Colors.blue,
  this.backgroundColor = Colors.white,
});