copyWith method
Implementation
SimpleImageEntity copyWith({
String? documentID,
String? appId,
String? description,
String? imageId,
StorageConditionsEntity? conditions,
}) {
return SimpleImageEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
imageId: imageId ?? this.imageId,
conditions: conditions ?? this.conditions,
);
}