FormFieldColumn constructor

FormFieldColumn({
  1. required String id,
  2. String? title,
  3. String? description,
  4. bool fullWidth = true,
})

Implementation

FormFieldColumn({
  required this.id,
  this.title,
  this.description,
  this.fullWidth = true,
});