toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boolValue = this.boolValue;
  final intValue = this.intValue;
  final realValue = this.realValue;
  final setting = this.setting;
  final source = this.source;
  final stringValue = this.stringValue;
  final unit = this.unit;
  return {
    'boolValue': ?boolValue,
    'intValue': ?intValue,
    'realValue': ?realValue,
    'setting': ?setting,
    'source': ?source,
    'stringValue': ?stringValue,
    'unit': ?unit,
  };
}