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