ClientSettings constructor

const ClientSettings({
  1. required AppCredentials credentials,
  2. bool debug = false,
  3. String loggerName = 'unsplash_client',
})

Creates new ClientSettings.

credentials must not be null.

Implementation

const ClientSettings({
  required this.credentials,
  this.debug = false,
  this.loggerName = 'unsplash_client',
});