InputPrompt constructor

InputPrompt({
  1. Icon? icon,
  2. Color? color,
  3. String? title,
  4. Function? onSubmit,
  5. bool transparent = false,
  6. String? inputHint,
  7. required String? description,
  8. required Curve animationCurve,
  9. required int animDuration,
  10. Color? btnOneColor,
  11. Text? btnOneText,
})

Implementation

InputPrompt({
  this.icon,
  this.color,
  this.title,
  this.onSubmit,
  this.transparent = false,
  this.inputHint,
  required this.description,
  required this.animationCurve,
  required this.animDuration,
  this.btnOneColor,
  this.btnOneText,
});