resetReturnedTrueTodayFlag static method
Resets the flag that indictaes that a true value has been returned by the
ShouldReview.shouldReview()
method in the last 24 hours (1 Day).
Implementation
static Future<void> resetReturnedTrueTodayFlag() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.remove(prefLastReturnedTrue);
}