FindShaderIdsResponse constructor

FindShaderIdsResponse({
  1. int? count,
  2. List<String>? ids,
  3. ResponseError? error,
})

Builds a FindShaderIdsResponse

total: The total number of shader ids returned ids: The list of ids error: An error if there was error while fetching the shader ids

Implementation

FindShaderIdsResponse({int? count, this.ids, super.error})
    : total = count ?? ids?.length ?? 0;