KatInputModel constructor

const KatInputModel({
  1. required String placeholder,
  2. String? initValue,
  3. required ValueChanged<String> onTextChange,
  4. required TextEditingController controller,
})

Implementation

const KatInputModel({
  required this.placeholder,
  this.initValue,
  required this.onTextChange,
  required this.controller,
});