timerGetVideoCountdown method

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

timerGetVideoCountdown -> /v1/timer/video_countdown

Requests the current value of the video countdown timer.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "string",
  "required": [],
  "example": "00:00:01"
}

Implementation

Future<Map<String, dynamic>> timerGetVideoCountdown() async {
  String url = '/v1/timer/videoCountdown';

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