InfoTextField constructor

const InfoTextField({
  1. Key? key,
  2. required String label,
  3. required TextEditingController textController,
  4. String hint = '',
  5. bool canEdit = true,
  6. VoidCallback? onTap,
  7. bool isRequired = false,
})

Implementation

const InfoTextField({
  super.key,
  required this.label,
  required this.textController,
  this.hint = '',
  this.canEdit = true,
  this.onTap,
  this.isRequired = false,
});