findMyMouse method

Future<bool> findMyMouse()
inherited

findMyMouse -> /v1/find_my_mouse

Executes the "Find My Mouse" operation.

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

Implementation

Future<bool> findMyMouse() async {
  String url = '/v1/findMyMouse';

  return await call('get', url, httpAccept: 'application/json');
}