propGetAllStream method

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

Streaming version of propGetAll

Implementation

Future<Stream<Map<String, dynamic>>?> propGetAllStream() async {
  String url = '/v1/props';

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