copyWith method

StarTransactionTypeChannelPaidReactionReceive copyWith({
  1. int? userId,
  2. int? messageId,
})

Implementation

StarTransactionTypeChannelPaidReactionReceive copyWith({
  int? userId,
  int? messageId,
}) => StarTransactionTypeChannelPaidReactionReceive(
  userId: userId ?? this.userId,
  messageId: messageId ?? this.messageId,
);