CustomTextFelid constructor

const CustomTextFelid({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? validator(
    1. String?
    )?,
  4. void onChanged(
    1. String
    )?,
  5. String? hintTexts,
  6. double? h,
  7. double? w,
  8. Color? colorBorderSide,
})

Implementation

const CustomTextFelid({
  Key? key,
  this.controller,
  this.validator,
  this.onChanged,
  this.hintTexts,
  this.h,
  this.w,
  this.colorBorderSide,
}) : super(key: key);