tomorrow static method

DateTime tomorrow()

The DateTime of tomorrow (without time (time set to zero)).

Implementation

static DateTime tomorrow() => today().copyWith(day: today().day + 1);