AuthRequest constructor
AuthRequest({})
Implementation
factory AuthRequest({
$core.Iterable<$core.String>? agentDetails,
$core.Iterable<$core.String>? capabilities,
$core.Iterable<$core.String>? scopes,
TempAuth? tempAuth,
$core.String? authSecret,
}) {
final result = create();
if (agentDetails != null) result.agentDetails.addAll(agentDetails);
if (capabilities != null) result.capabilities.addAll(capabilities);
if (scopes != null) result.scopes.addAll(scopes);
if (tempAuth != null) result.tempAuth = tempAuth;
if (authSecret != null) result.authSecret = authSecret;
return result;
}