copyWith method
Implementation
ImageProject copyWith({ num? imageId,
num? projectGalleryId,
num? projectId,
String? image,
String? imageFull,
String? imageName,
String? type,
String? title,
String? createdAt,
}) => ImageProject( imageId: imageId ?? _imageId,
projectGalleryId: projectGalleryId ?? _projectGalleryId,
projectId: projectId ?? _projectId,
image: image ?? _image,
imageFull: imageFull ?? _imageFull,
imageName: imageName ?? _imageName,
type: type ?? _type,
title: title ?? _title,
createdAt: createdAt ?? _createdAt,
);