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