CommentInput constructor

CommentInput({
  1. required TextEditingController controller,
  2. Key? key,
  3. required dynamic loadImage(),
  4. bool showImage = true,
  5. String? tagTO,
})

Implementation

CommentInput({
  required this.controller,
  Key? key,
  required this.loadImage,
  this.showImage = true,
  this.tagTO,
}) : super(key: key);