InputFieldAlert constructor

const InputFieldAlert({
  1. Key? key,
  2. required String message,
  3. AlertType alertType = AlertType.error,
  4. double width = 300,
  5. double height = 50,
  6. double borderRadius = 8.0,
  7. double fontSize = 14.0,
  8. Color? backgroundColor,
  9. Color? textColor,
})

Implementation

const InputFieldAlert({
  super.key,
  required this.message,
  this.alertType = AlertType.error,
  this.width = 300,
  this.height = 50,
  this.borderRadius = 8.0,
  this.fontSize = 14.0,
  this.backgroundColor,
  this.textColor,
});