timerGetCurrentTimes method

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

timerGetCurrentTimes -> /v1/timers/current

Requests the current time for all configured timers.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

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

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