ZeroTextfieldStyle constructor

ZeroTextfieldStyle({
  1. required InputDecorationType inputDecorationType,
  2. required ZeroTextfieldSize textfieldSize,
  3. required Color focusedBorderColor,
  4. required Color focusedColor,
  5. BorderRadius? radius,
  6. Color? fillColor,
  7. bool enabled = true,
  8. bool error = false,
})

Implementation

ZeroTextfieldStyle({
  required this.inputDecorationType,
  required this.textfieldSize,
  required this.focusedBorderColor,
  required this.focusedColor,
  this.radius,
  this.fillColor,
  this.enabled = true,
  this.error = false,
});