copyWith method

  1. @override
UpdateStoryDeleted copyWith({
  1. int? storySenderChatId,
  2. int? storyId,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateStoryDeleted copyWith({
  int? storySenderChatId,
  int? storyId,
  dynamic extra,
  int? clientId,
}) =>
    UpdateStoryDeleted(
      storySenderChatId: storySenderChatId ?? this.storySenderChatId,
      storyId: storyId ?? this.storyId,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );