copyWith method
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,
);