BoxInput constructor

BoxInput(
  1. String label,
  2. dynamic hint,
  3. ValueChanged<String> onChange, {
  4. String initText = '',
  5. double paddignL = 0.0,
  6. dynamic hasLabel = true,
  7. dynamic onTap,
  8. dynamic icon,
  9. dynamic rightIcon,
  10. double iconWidth = 0.0,
  11. bool isPhone = false,
  12. bool isSecure = false,
  13. bool hasDivider = true,
  14. double? height,
  15. double labelFontSize = 14.0,
  16. bool isNumber = false,
  17. double rightIconWidth = 0.0,
})

Implementation

BoxInput(this.label, this.hint, this.onChange,
    {this.initText = '',
    this.paddignL = 0.0,
    this.hasLabel = true,
    this.onTap,
    this.icon,
    this.rightIcon,
    this.iconWidth = 0.0,
    this.isPhone = false,
    this.isSecure = false,
    this.hasDivider = true,
    this.height,
    this.labelFontSize = 14.0,
    this.isNumber = false,
    this.rightIconWidth = 0.0});