LKTextField constructor

const LKTextField({
  1. required String label,
  2. TextEditingController? ctrl,
  3. Key? key,
})

Implementation

const LKTextField({
  required this.label,
  this.ctrl,
  super.key,
});