copyWith method

ProjectImage copyWith({
  1. num? imageId,
  2. num? projectGalleryId,
  3. num? projectId,
  4. String? image,
  5. String? imageFull,
  6. String? imageName,
  7. String? type,
  8. String? title,
  9. String? createdAt,
})

Implementation

ProjectImage copyWith({  num? imageId,
  num? projectGalleryId,
  num? projectId,
  String? image,
  String? imageFull,
  String? imageName,
  String? type,
  String? title,
  String? createdAt,
}) => ProjectImage(  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,
);