copyWith method

BotMediaPreview copyWith({
  1. int? date,
  2. StoryContent? content,
})

Implementation

BotMediaPreview copyWith({int? date, StoryContent? content}) =>
    BotMediaPreview(
      date: date ?? this.date,
      content: content ?? this.content,
    );