BlurryTextField constructor

const BlurryTextField({
  1. Key? key,
  2. required String label,
  3. required TextEditingController textController,
  4. required Color themeColor,
  5. required TextInputType textInputType,
  6. required bool isPassword,
  7. required bool withVisibilityEye,
  8. TextStyle textStyle = const TextStyle(color: Colors.black),
  9. TextStyle labelStyle = const TextStyle(color: Colors.black),
})

Implementation

const BlurryTextField({
  Key? key,
  required this.label,
  required this.textController,
  required this.themeColor,
  required this.textInputType,
  required this.isPassword,
  required this.withVisibilityEye,
  this.textStyle = const TextStyle(color: Colors.black),
  this.labelStyle = const TextStyle(color: Colors.black),
}) : super(key: key);