isTablet method

bool isTablet(
  1. double cx, [
  2. double? cy
])

Checks if the given coordinates represent a tab device.

Implementation

bool isTablet(double cx, [double? cy]) => isDevice(tablet, cx, cy);