ZipResults constructor

ZipResults(
  1. List _results,
  2. Map<String, int> _tagIndexMap, [
  3. Map<int, dynamic> _errors = const {}
])

Creates a ZipResults instance with results, tag mapping, and optional errors.

This constructor is typically called internally by zipRequest and should not be used directly by application code.

Parameters:

  • _results: List of results in submission order
  • _tagIndexMap: Mapping from tags to result indices
  • _errors: Map of indices to error objects for failed requests

Implementation

ZipResults(this._results, this._tagIndexMap, [this._errors = const {}]);