CreateCommentLike constructor

  1. @JsonSerializable(fieldRename: FieldRename.snake, includeIfNull: false)
const CreateCommentLike({
  1. required int commentId,
  2. required VoteType score,
  3. required String auth,
})

Implementation

@JsonSerializable(fieldRename: FieldRename.snake, includeIfNull: false)
const factory CreateCommentLike({
  required int commentId,
  required VoteType score,
  required String auth,
}) = _CreateCommentLike;