copyWith method
Implementation
GalleryAttachmentList copyWith({
num? id,
String? url,
}) =>
GalleryAttachmentList(
id: id ?? this.id,
url: url ?? this.url,
);
GalleryAttachmentList copyWith({
num? id,
String? url,
}) =>
GalleryAttachmentList(
id: id ?? this.id,
url: url ?? this.url,
);