Comment constructor
Comment({
- Object? body,
- CommentMode? mode,
- CommentAuthorInformation? author,
- String? contextValue,
- List<
CommentReaction> ? reactions, - String? label,
- DateTime? timestamp,
Implementation
factory Comment({
_i2.Object? body,
_i3.CommentMode? mode,
_i3.CommentAuthorInformation? author,
_i2.String? contextValue,
_i2.List<_i3.CommentReaction>? reactions,
_i2.String? label,
_i2.DateTime? timestamp,
}) =>
Comment._(
body: body ?? _i6.undefined,
mode: mode?.name,
author: author ?? _i6.undefined,
contextValue: contextValue,
reactions: reactions,
label: label,
timestamp: timestamp,
);