copyWith method

UtilReviewModel copyWith({
  1. String? latest,
})

Implementation

UtilReviewModel copyWith({
  String? latest,
}) => UtilReviewModel(
  latest: latest ?? _latest,
);