copyWith method
UpdateNewGroupCallPaidReaction
copyWith({
- int? groupCallId,
- MessageSender? senderId,
- int? starCount,
Implementation
UpdateNewGroupCallPaidReaction copyWith({
int? groupCallId,
MessageSender? senderId,
int? starCount,
}) => UpdateNewGroupCallPaidReaction(
groupCallId: groupCallId ?? this.groupCallId,
senderId: senderId ?? this.senderId,
starCount: starCount ?? this.starCount,
);