copyWith method
Implementation
Replies copyWith({
int? totalItems,
String? selfLink,
List<PostComments>? postComments,
}) {
return Replies(
totalItems: totalItems ?? this.totalItems,
selfLink: selfLink ?? this.selfLink,
postComments: postComments ?? this.postComments,
);
}