copyWith method

SetGroupCallPaidMessageStarCount copyWith({
  1. int? groupCallId,
  2. int? paidMessageStarCount,
})

Implementation

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