FindUserIdsResponse constructor

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

Builds a FindUserIdsResponse

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

Implementation

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