copyWith method

TaskGalleryItemRequest copyWith({
  1. String? objectId,
})

Implementation

TaskGalleryItemRequest copyWith({String? objectId}) {
  return TaskGalleryItemRequest(objectId: objectId ?? this.objectId);
}