CustomTextInput constructor

const CustomTextInput({
  1. Key? key,
  2. String? label,
  3. TextStyle? style,
  4. TextStyle? labelStyle,
  5. required TextEditingController editingController,
})

Implementation

const CustomTextInput(
    {Key? key,
    this.label,
    this.style,
    this.labelStyle,
    required this.editingController})
    : super(key: key);