copyWith method

GetChatRevenueWithdrawalUrl copyWith({
  1. int? chatId,
  2. String? password,
})

Implementation

GetChatRevenueWithdrawalUrl copyWith({int? chatId, String? password}) =>
    GetChatRevenueWithdrawalUrl(
      chatId: chatId ?? this.chatId,
      password: password ?? this.password,
    );