copyWith method

UpdateNewGroupCallPaidReaction copyWith({
  1. int? groupCallId,
  2. MessageSender? senderId,
  3. int? starCount,
})

Implementation

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