copyWith method
Implementation
SetGroupCallPaidMessageStarCount copyWith({
int? groupCallId,
int? paidMessageStarCount,
}) => SetGroupCallPaidMessageStarCount(
groupCallId: groupCallId ?? this.groupCallId,
paidMessageStarCount: paidMessageStarCount ?? this.paidMessageStarCount,
);