APIConfig constructor

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