customTime property

DateTime? customTime

Get the custom time that overires the ShouldReview system time.

Implementation

static DateTime? get customTime {
  return _customTime;
}
void customTime=(DateTime? customTime)

Set a custome time that overrides the ShouldReview system time.

Implementation

static set customTime(DateTime? customTime) {
  _customTime = customTime;
}