timerGetAll method

Future<Map<String, dynamic>> timerGetAll()
inherited

timerGetAll -> /v1/timers

Requests the details for all configured timers.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "array",
  "required": []
}

Implementation

Future<Map<String, dynamic>> timerGetAll() async {
  String url = '/v1/timers';

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