addReviews method Null safety
Implementation
void addReviews(List<Review> reviews) {
for (final review in reviews) {
_state = applyReview(_state!, review);
}
_cachedCardsSchedule = null;
}
void addReviews(List<Review> reviews) {
for (final review in reviews) {
_state = applyReview(_state!, review);
}
_cachedCardsSchedule = null;
}