timerGetCurrentTimesStream method

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

Streaming version of timerGetCurrentTimes

Implementation

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

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