AddSAMLAppResponse constructor

AddSAMLAppResponse({
  1. String? appId,
  2. 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;
}