BaseFieldConfig constructor

const BaseFieldConfig({
  1. required String name,
  2. required String label,
  3. bool required = false,
  4. dynamic defaultValue,
  5. FormValidator? validator,
  6. bool isShow = true,
  7. Key? key,
})

Implementation

const BaseFieldConfig({required this.name, required this.label, this.required = false, this.defaultValue, this.validator, this.isShow = true, this.key});