ThemedTextField constructor

const ThemedTextField({
  1. Key? key,
  2. String? text,
  3. bool? isObscure,
  4. required TextEditingController tec,
  5. double? height,
  6. double? cPadding,
})

Implementation

const ThemedTextField(
    {Key? key,
    this.text,
    this.isObscure,
    required this.tec,
    this.height,
    this.cPadding})
    : super(key: key);