tomorrow property

T get tomorrow

Returns a DateTime that represents the day after this DateTime.

Implementation

T get tomorrow => _tomorrow ??= this + const Duration(days: 1);