copyWith method
MessageStatistics
copyWith({
- StatisticalGraph? messageInteractionGraph,
- StatisticalGraph? messageReactionGraph,
Implementation
MessageStatistics copyWith({
StatisticalGraph? messageInteractionGraph,
StatisticalGraph? messageReactionGraph,
}) => MessageStatistics(
messageInteractionGraph:
messageInteractionGraph ?? this.messageInteractionGraph,
messageReactionGraph: messageReactionGraph ?? this.messageReactionGraph,
);