检查是否为今天
bool isToday({DateTime? today}) { final now = today ?? DateTime.now(); return isSameDay(now); }