copyWith method

GetChatStatistics copyWith({
  1. int? chatId,
  2. bool? isDark,
})

Implementation

GetChatStatistics copyWith({
  int? chatId,
  bool? isDark,
}) =>
    GetChatStatistics(
      chatId: chatId ?? this.chatId,
      isDark: isDark ?? this.isDark,
    );