timerGetSystemTimeStream method

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

Streaming version of timerGetSystemTime

Implementation

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

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