copyWith method
ArticlePhoto
copyWith({
- int? calibreId,
- int? id,
- String? path,
- PhotoSource? source,
- DateTime? dateUTC,
Implementation
ArticlePhoto copyWith({
int? calibreId,
int? id,
String? path,
PhotoSource? source,
DateTime? dateUTC,
}) {
return ArticlePhoto(
calibreId: calibreId ?? this.calibreId,
id: id ?? this.id,
path: path ?? this.path,
source: source ?? this.source,
dateUTC: dateUTC ?? this.dateUTC,
);
}