PlexFormFieldGeneric constructor

const PlexFormFieldGeneric({
  1. String? title,
  2. String? semanticLabel,
  3. bool enabled = true,
  4. String? helperText,
  5. bool useMargin = true,
  6. double cornerRadius = PlexDim.small,
  7. EdgeInsets margin = const EdgeInsets.symmetric(horizontal: PlexDim.medium, vertical: PlexDim.small),
})

Implementation

const PlexFormFieldGeneric({
  this.title,
  this.semanticLabel,
  this.enabled = true,
  this.helperText,
  this.useMargin = true,
  this.cornerRadius = PlexDim.small,
  this.margin = const EdgeInsets.symmetric(horizontal: PlexDim.medium, vertical: PlexDim.small),
});