toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final buildingId = this.buildingId;
  final current = this.current;
  final deskCode = this.deskCode;
  final floor = this.floor;
  final floorSection = this.floorSection;
  final metadata = this.metadata;
  final type = this.type;
  final value = this.value;
  return {
    'buildingId': ?buildingId,
    'current': ?current,
    'deskCode': ?deskCode,
    'floor': ?floor,
    'floorSection': ?floorSection,
    'metadata': ?metadata,
    'type': ?type,
    'value': ?value,
  };
}