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