CustomInputField constructor

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

Implementation

const CustomInputField({
  Key? key,
  this.hintText = '',
  this.height = 50,
  this.width = 300,
  this.iconColor,
  this.icon,
  this.onTap,
}) : super(key: key);