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