isTablet static method

bool isTablet(
  1. double width
)

Returns true when width is at or above the tablet breakpoint.

Implementation

static bool isTablet(double width) => width >= tablet;