copyWith method

DeleteProjectResponseModel copyWith({
  1. String? status,
})

Implementation

DeleteProjectResponseModel copyWith({String? status}) {
  return DeleteProjectResponseModel(status: status ?? this.status);
}