copyWith method

GetDirectMessagesChatTopicRevenue copyWith({
  1. int? chatId,
  2. int? topicId,
})

Implementation

GetDirectMessagesChatTopicRevenue copyWith({int? chatId, int? topicId}) =>
    GetDirectMessagesChatTopicRevenue(
      chatId: chatId ?? this.chatId,
      topicId: topicId ?? this.topicId,
    );