copyWith method

GetStoryStatistics copyWith({
  1. int? chatId,
  2. int? storyId,
  3. bool? isDark,
})

Implementation

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