isTomorrow property
bool
get
isTomorrow
是否为明天
Implementation
bool get isTomorrow {
final nowDate = DateTime.now();
return year == nowDate.year &&
month == nowDate.month &&
day == nowDate.day + 1;
}