tomorrow property

DateTimeRange tomorrow

昨天

Implementation

static DateTimeRange get tomorrow {
  // 今天的0时,是昨天的结束时间
  return DateTimeRange(
    start: todayEnd,
    end: todayEnd + 1.days,
  );
}