findShaderIdsByPlaylistId abstract method

Future<FindShaderIdsResponse> findShaderIdsByPlaylistId(
  1. String playlistId,
  2. {int from,
  3. int num}
)

Returns a FindShaderIdsResponse with a list of shader ids.

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

Upon success a list of shader ids is provided as well as the overall number of records in total (not the number of shader ids 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 id list is provided

Implementation

Future<FindShaderIdsResponse> findShaderIdsByPlaylistId(String playlistId,
    {int from, int num});