PlexFormFieldGeneric constructor

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

Implementation

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