InputConfig<T> constructor

InputConfig<T>({
  1. required InputType type,
  2. required String id,
  3. required String label,
  4. T? defaultValue,
  5. bool? required,
  6. Conditions? conditions,
  7. List<ValidatorConfig>? validators,
})

Implementation

InputConfig({
  required this.type,
  required this.id,
  required this.label,
  this.defaultValue,
  this.required,
  this.conditions,
  this.validators,
});