SaveComment constructor
- @JsonSerializable.new(includeIfNull: false)
Implementation
@JsonSerializable(includeIfNull: false)
const factory SaveComment({
/// The comment to save/unsave.
@JsonKey(name: 'comment_id') required int commentId,
/// True to save, false to unsave.
required bool save,
/// Auth token.
required String auth,
}) = _SaveComment;