copyWith method

  1. @override
InternalLinkTypeStory copyWith({
  1. String? storySenderUsername,
  2. int? storyId,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

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