FastFieldLayout constructor

const FastFieldLayout({
  1. Key? key,
  2. required Widget control,
  3. EdgeInsets margin = const EdgeInsets.only(bottom: 8.0),
  4. bool showHelperBoundaries = true,
  5. bool capitalizeLabelText = true,
  6. Color? helperTextColor,
  7. String? captionText,
  8. String? helperText,
  9. Widget? suffixIcon,
  10. String? labelText,
})

Implementation

const FastFieldLayout({
  super.key,
  required this.control,
  this.margin = const EdgeInsets.only(bottom: 8.0),
  this.showHelperBoundaries = true,
  this.capitalizeLabelText = true,
  this.helperTextColor,
  this.captionText,
  this.helperText,
  this.suffixIcon,
  this.labelText,
});