playlistGetAll method

Future<Map<String, dynamic>> playlistGetAll()
inherited

playlistGetAll -> /v1/playlists

Requests a list of all configured playlists.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "array",
  "required": []
}

Implementation

Future<Map<String, dynamic>> playlistGetAll() async {
  String url = '/v1/playlists';

  return await call('get', url, httpAccept: 'application/json');
}