findShadersByPlaylistId abstract method

Future<FindShadersResponse> findShadersByPlaylistId(
  1. String playlistId, {
  2. int? from,
  3. int? num,
})

Returns a FindShadersResponse with a list of shaders. for the playlist playlistId

  • from: A 0 based index for results returned
  • num: The total number of results

Upon success a list of Shader objects is provided as well as the overall number of records in total (not the number of shaders in the list, the number of total results). The error is set to null

In case of error a ResponseError is set and no Shader list is provided

Implementation

Future<FindShadersResponse> findShadersByPlaylistId(String playlistId,
    {int? from, int? num});