UpdateAPIAppConfigRequest constructor
UpdateAPIAppConfigRequest({
- String? projectId,
- String? appId,
- APIAuthMethodType? authMethodType,
Implementation
factory UpdateAPIAppConfigRequest({
$core.String? projectId,
$core.String? appId,
$12.APIAuthMethodType? authMethodType,
}) {
final result = create();
if (projectId != null) result.projectId = projectId;
if (appId != null) result.appId = appId;
if (authMethodType != null) result.authMethodType = authMethodType;
return result;
}