copyWith method

  1. @override
MessageReplyToStory copyWith({
  1. int? storySenderChatId,
  2. int? storyId,
})
override

Implementation

@override
MessageReplyToStory copyWith({
  int? storySenderChatId,
  int? storyId,
}) =>
    MessageReplyToStory(
      storySenderChatId: storySenderChatId ?? this.storySenderChatId,
      storyId: storyId ?? this.storyId,
    );