SettingValue constructor

SettingValue(
  1. bool? booleanValue,
  2. String? stringValue,
  3. int? intValue,
  4. double? doubleValue,
)

Implementation

SettingValue(
    this.booleanValue, this.stringValue, this.intValue, this.doubleValue);