PostgreSqlSetting constructor

PostgreSqlSetting({
  1. bool? boolValue,
  2. String? intValue,
  3. double? realValue,
  4. String? setting,
  5. String? source,
  6. String? stringValue,
  7. String? unit,
})

Implementation

PostgreSqlSetting({
  this.boolValue,
  this.intValue,
  this.realValue,
  this.setting,
  this.source,
  this.stringValue,
  this.unit,
});