isLaptop method

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

Checks if the given coordinates represent a laptop device.

Implementation

bool isLaptop(double cx, [double? cy]) => isDevice(laptop, cx, cy);