Comment.withDefault constructor

Comment.withDefault()

Implementation

factory Comment.withDefault() {
  return Comment((builder) {
    builder
      ..commentType = CommentType.unknown
      ..text = StringLiteral.withDefault().toBuilder();
  });
}