copyWith method
Implementation
GetMessageStatistics copyWith({
int? chatId,
int? messageId,
bool? isDark,
}) =>
GetMessageStatistics(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
isDark: isDark ?? this.isDark,
);