copyWith method
ChatStatisticsSupergroup
copyWith({
- DateRange? period,
- StatisticalValue? memberCount,
- StatisticalValue? messageCount,
- StatisticalValue? viewerCount,
- StatisticalValue? senderCount,
- StatisticalGraph? memberCountGraph,
- StatisticalGraph? joinGraph,
- StatisticalGraph? joinBySourceGraph,
- StatisticalGraph? languageGraph,
- StatisticalGraph? messageContentGraph,
- StatisticalGraph? actionGraph,
- StatisticalGraph? dayGraph,
- StatisticalGraph? weekGraph,
- List<
ChatStatisticsMessageSenderInfo> ? topSenders, - List<
ChatStatisticsAdministratorActionsInfo> ? topAdministrators, - List<
ChatStatisticsInviterInfo> ? topInviters, - dynamic extra,
- int? clientId,
override
Implementation
@override
ChatStatisticsSupergroup copyWith({
DateRange? period,
StatisticalValue? memberCount,
StatisticalValue? messageCount,
StatisticalValue? viewerCount,
StatisticalValue? senderCount,
StatisticalGraph? memberCountGraph,
StatisticalGraph? joinGraph,
StatisticalGraph? joinBySourceGraph,
StatisticalGraph? languageGraph,
StatisticalGraph? messageContentGraph,
StatisticalGraph? actionGraph,
StatisticalGraph? dayGraph,
StatisticalGraph? weekGraph,
List<ChatStatisticsMessageSenderInfo>? topSenders,
List<ChatStatisticsAdministratorActionsInfo>? topAdministrators,
List<ChatStatisticsInviterInfo>? topInviters,
dynamic extra,
int? clientId,
}) => ChatStatisticsSupergroup(
period: period ?? this.period,
memberCount: memberCount ?? this.memberCount,
messageCount: messageCount ?? this.messageCount,
viewerCount: viewerCount ?? this.viewerCount,
senderCount: senderCount ?? this.senderCount,
memberCountGraph: memberCountGraph ?? this.memberCountGraph,
joinGraph: joinGraph ?? this.joinGraph,
joinBySourceGraph: joinBySourceGraph ?? this.joinBySourceGraph,
languageGraph: languageGraph ?? this.languageGraph,
messageContentGraph: messageContentGraph ?? this.messageContentGraph,
actionGraph: actionGraph ?? this.actionGraph,
dayGraph: dayGraph ?? this.dayGraph,
weekGraph: weekGraph ?? this.weekGraph,
topSenders: topSenders ?? this.topSenders,
topAdministrators: topAdministrators ?? this.topAdministrators,
topInviters: topInviters ?? this.topInviters,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);