tag property

String? tag
final

Optional tag for named result access in ZipResults.

Tags enable accessing results by name instead of index:

final user = results.getRequestByTag<UserInfo>('user');

Tags must be unique within a single zipRequest call.

Implementation

final String? tag;