CustomInputField constructor

CustomInputField({
  1. String hintText = '',
  2. double height = 50,
  3. double width = 300,
  4. Color? iconColor,
  5. IconData? icon,
  6. Function? onTap,
})

Implementation

CustomInputField(
    {this.hintText = '',
    this.height = 50,
    this.width = 300,
    this.iconColor,
    this.icon,
    this.onTap});