InfoTextField constructor
- Key? key,
- required String label,
- required TextEditingController textController,
- String hint = '',
- bool canEdit = true,
- VoidCallback? onTap,
- bool isRequired = false,
Implementation
const InfoTextField({
super.key,
required this.label,
required this.textController,
this.hint = '',
this.canEdit = true,
this.onTap,
this.isRequired = false,
});