copyWith method

InternalLinkTypeStoryAlbum copyWith({
  1. String? storyAlbumOwnerUsername,
  2. int? storyAlbumId,
})

Implementation

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