isMobile method

bool isMobile(
  1. double cx,
  2. double cy
)

Checks if the given coordinates represent a mobile device.

Implementation

bool isMobile(double cx, double cy) => isDevice(mobile, cx, cy);