检查是否为明天
bool isTomorrow({DateTime? today}) { DateTime tomorrow = (today ?? DateTime.now()).add(Duration(days: 1)); return isSameDay(tomorrow); }