AddSAMLAppResponse constructor
AddSAMLAppResponse({
- String? appId,
- ObjectDetails? details,
Implementation
factory AddSAMLAppResponse({
$core.String? appId,
$2.ObjectDetails? details,
}) {
final result = create();
if (appId != null) result.appId = appId;
if (details != null) result.details = details;
return result;
}