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