BJHTitleTextInputValueCell constructor

BJHTitleTextInputValueCell({
  1. Key? key,
  2. required String title,
  3. String? textInputValue,
  4. TextEditingController? controller,
  5. void onTap()?,
})

Implementation

BJHTitleTextInputValueCell({
  Key? key,
  required this.title,
  this.textInputValue,
  this.controller,
  this.onTap,
}) : super(key: key);