BilionsPasswordInput constructor

const BilionsPasswordInput({
  1. Key? key,
  2. required String label,
  3. Widget? prefixIcon,
  4. Widget? suffixIcon,
  5. TextEditingController? controller,
  6. String? initialValue,
  7. dynamic onChanged(
    1. String
    )?,
  8. Color? textColor,
  9. String? variant = 'primary',
  10. Color? labelColor,
})

Implementation

const BilionsPasswordInput({
  Key? key,
  required this.label,
  this.prefixIcon,
  this.suffixIcon,
  this.controller,
  this.initialValue,
  this.onChanged,
  this.textColor,
  this.variant = 'primary',
  this.labelColor,
}) : super(key: key);