copyWith method

UpdateChatRevenueAmount copyWith({
  1. int? chatId,
  2. ChatRevenueAmount? revenueAmount,
})

Implementation

UpdateChatRevenueAmount copyWith({
  int? chatId,
  ChatRevenueAmount? revenueAmount,
}) => UpdateChatRevenueAmount(
  chatId: chatId ?? this.chatId,
  revenueAmount: revenueAmount ?? this.revenueAmount,
);