MoonInputField constructor

const MoonInputField({
  1. Key? key,
  2. required TextEditingController controller,
  3. String? label,
  4. String? hint,
  5. bool isEnabled = true,
  6. bool isError = false,
  7. TextInputType keyboardType = TextInputType.text,
})

Implementation

const MoonInputField({
  super.key,
  required this.controller,
  this.label,
  this.hint,
  this.isEnabled = true,
  this.isError = false,
  this.keyboardType = TextInputType.text,
});