createComment method

Comment createComment([
  1. BindingContext? context
])

Implementation

Comment createComment([BindingContext? context]) {
  Comment comment = Comment(context);
  comment.ownerDocument = this;
  return comment;
}