copyWith method

ChatStatisticsInteractionInfo copyWith({
  1. ChatStatisticsObjectType? objectType,
  2. int? viewCount,
  3. int? forwardCount,
  4. int? reactionCount,
})

Implementation

ChatStatisticsInteractionInfo copyWith({
  ChatStatisticsObjectType? objectType,
  int? viewCount,
  int? forwardCount,
  int? reactionCount,
}) => ChatStatisticsInteractionInfo(
  objectType: objectType ?? this.objectType,
  viewCount: viewCount ?? this.viewCount,
  forwardCount: forwardCount ?? this.forwardCount,
  reactionCount: reactionCount ?? this.reactionCount,
);