copyWith method

StarTransactionTypePaidGroupCallReactionReceive copyWith({
  1. MessageSender? senderId,
  2. int? commissionPerMille,
  3. StarAmount? commissionStarAmount,
})

Implementation

StarTransactionTypePaidGroupCallReactionReceive copyWith({
  MessageSender? senderId,
  int? commissionPerMille,
  StarAmount? commissionStarAmount,
}) => StarTransactionTypePaidGroupCallReactionReceive(
  senderId: senderId ?? this.senderId,
  commissionPerMille: commissionPerMille ?? this.commissionPerMille,
  commissionStarAmount: commissionStarAmount ?? this.commissionStarAmount,
);