timerGetVideoCountdownStream method

Future<Stream<Map<String, dynamic>>?> timerGetVideoCountdownStream()
inherited

Streaming version of timerGetVideoCountdown

Implementation

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

  return callStream('get', url, params: {'chunked': 'true'});
}