FormResults constructor

const FormResults({
  1. bool errorState = false,
  2. List<FormBuilderError> formErrors = const [],
  3. required List<FieldResults> results,
})

Implementation

const FormResults({
  this.errorState = false,
  this.formErrors = const [],
  required this.results,
});