ObjectReview constructor
ObjectReview({
- Timestamp? created,
- AccountUserId? reviewer,
- StoredObjectId? objectId,
- String? title,
- String? review,
- double? rating,
Implementation
factory ObjectReview({
$0.Timestamp? created,
$1.AccountUserId? reviewer,
$1.StoredObjectId? objectId,
$core.String? title,
$core.String? review,
$core.double? rating,
}) {
final result = create();
if (created != null) result.created = created;
if (reviewer != null) result.reviewer = reviewer;
if (objectId != null) result.objectId = objectId;
if (title != null) result.title = title;
if (review != null) result.review = review;
if (rating != null) result.rating = rating;
return result;
}