copyWith method
Implementation
InternalLinkTypeStoryAlbum copyWith({
String? storyAlbumOwnerUsername,
int? storyAlbumId,
}) => InternalLinkTypeStoryAlbum(
storyAlbumOwnerUsername:
storyAlbumOwnerUsername ?? this.storyAlbumOwnerUsername,
storyAlbumId: storyAlbumId ?? this.storyAlbumId,
);