FormFieldRow constructor

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

Implementation

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