SavePost constructor
- @JsonSerializable.new(includeIfNull: false)
Implementation
@JsonSerializable(includeIfNull: false)
const factory SavePost({
/// The post to save/unsave.
@JsonKey(name: 'post_id') required int postId,
/// True to save, false to unsave.
required bool save,
/// Auth token.
required String auth,
}) = _SavePost;