presentationGetChordChartUpdatesStream method

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

Streaming version of presentationGetChordChartUpdates

Implementation

Future<Stream<Map<String, dynamic>>?> presentationGetChordChartUpdatesStream() async {
  String url = '/v1/presentation/chordChart/updates';

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