ProviderConfig constructor

const ProviderConfig({
  1. required String type,
  2. String? apiKey,
  3. String? baseUrl,
  4. String? wireApi,
  5. String? bearerToken,
  6. AzureProviderOptions? azure,
})

Implementation

const ProviderConfig({
  required this.type,
  this.apiKey,
  this.baseUrl,
  this.wireApi,
  this.bearerToken,
  this.azure,
});