LoginInput constructor

const LoginInput({
  1. Key? key,
  2. dynamic onInputChange(
    1. String
    )?,
  3. String? hintText,
  4. Color? activeColor,
  5. TextStyle? textStyle,
  6. Icon? prefixIcon,
  7. Color unactiveColor = Colors.white24,
  8. bool obscureText = false,
})

Implementation

const LoginInput({Key? key,
  this.onInputChange,
  this.hintText,
  this.activeColor,
  this.textStyle,
  this.prefixIcon,
  this.unactiveColor = Colors.white24,
  this.obscureText = false})
    : super(key: key);