Album copyWith({ String? name, String? identifier, int? count, }) { return Album( name ?? this.name, identifier ?? this.identifier, count ?? this.count, ); }