Settings constructor

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

Creates an instance for these Settings.

Implementation

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