isTomorrow static method

bool isTomorrow(
  1. int? ms
)

Checks if the given milliseconds since epoch represents tomorrow.

Implementation

static bool isTomorrow(int? ms) => ms.isTomorrow;