CommentBox constructor

CommentBox({
  1. Widget? child,
  2. Widget? header,
  3. dynamic sendButtonMethod,
  4. dynamic formKey,
  5. dynamic commentController,
  6. Widget? sendWidget,
  7. ImageProvider<Object>? userImage,
  8. String? labelText,
  9. FocusNode? focusNode,
  10. String? errorText,
  11. bool withBorder = true,
  12. Color? backgroundColor,
  13. Color? textColor,
})

Implementation

CommentBox(
    {this.child,
    this.header,
    this.sendButtonMethod,
    this.formKey,
    this.commentController,
    this.sendWidget,
    this.userImage,
    this.labelText,
    this.focusNode,
    this.errorText,
    this.withBorder = true,
    this.backgroundColor,
    this.textColor});