MmConfigSqlSettings constructor

MmConfigSqlSettings({
  1. String? driverName,
  2. String? dataSource,
  3. List<String> dataSourceReplicas = const [],
  4. int? maxIdleConns,
  5. int? maxOpenConns,
  6. bool? trace,
  7. String? atRestEncryptKey,
})

Returns a new MmConfigSqlSettings instance.

Implementation

MmConfigSqlSettings({
  this.driverName,
  this.dataSource,
  this.dataSourceReplicas = const [],
  this.maxIdleConns,
  this.maxOpenConns,
  this.trace,
  this.atRestEncryptKey,
});