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;
}