FormConfig constructor

FormConfig({
  1. required String id,
  2. required String type,
  3. required String formKey,
  4. required String label,
  5. required FormProps props,
  6. bool isHidden = false,
  7. dynamic value,
})

Creates a new instance of FormConfig.

Implementation

FormConfig({
  required this.id,
  required this.type,
  required this.formKey,
  required this.label,
  required this.props,
  this.isHidden = false,
  this.value,
});