lookGetCurrentStream method

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

Streaming version of lookGetCurrent

Implementation

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

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