GetPostReplies constructor

  1. @JsonSerializable.new(includeIfNull: false)
const GetPostReplies({
  1. @JsonKey.new(name: 'post_id') required int postId,
  2. String? auth,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory GetPostReplies({@JsonKey(name: 'post_id') required int postId, String? auth}) = _GetPostReplies;