Settings constructor

const Settings({
  1. bool? persistenceEnabled,
  2. String? host,
  3. bool? sslEnabled,
  4. int? cacheSizeBytes,
  5. bool ignoreUndefinedProperties = false,
})

Creates an instance for these Settings.

Implementation

const Settings({
  this.persistenceEnabled,
  this.host,
  this.sslEnabled,
  this.cacheSizeBytes,
  this.ignoreUndefinedProperties = false,
});