copyWith method
Implementation
StoryAlbum copyWith({
int? id,
String? name,
Photo? photoIcon,
Video? videoIcon,
}) => StoryAlbum(
id: id ?? this.id,
name: name ?? this.name,
photoIcon: photoIcon ?? this.photoIcon,
videoIcon: videoIcon ?? this.videoIcon,
);