AuthResponse constructor
AuthResponse({
- ClientConfig? config,
- String? authToken,
Implementation
factory AuthResponse({
ClientConfig? config,
$core.String? authToken,
}) {
final result = create();
if (config != null) result.config = config;
if (authToken != null) result.authToken = authToken;
return result;
}