isTomorrow static method

bool isTomorrow(
  1. DateTime date
)

Returns true if is tomorrow, otherwise false

Implementation

static bool isTomorrow(DateTime date) => date.isTomorrow;