FieldWrapperProps constructor

const FieldWrapperProps({
  1. required Widget field,
  2. String? labelText,
  3. String? description,
  4. String? icon,
  5. String? error,
  6. bool required = false,
  7. bool showValidation = true,
  8. Widget? leading,
  9. Widget? trailing,
})

Implementation

const FieldWrapperProps({
  required this.field,
  this.labelText,
  this.description,
  this.icon,
  this.error,
  this.required = false,
  this.showValidation = true,
  this.leading,
  this.trailing,
});