toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final buildingId = this.buildingId;
  final deskId = this.deskId;
  final floorId = this.floorId;
  final floorSectionId = this.floorSectionId;
  final label = this.label;
  return {
    'buildingId': ?buildingId,
    'deskId': ?deskId,
    'floorId': ?floorId,
    'floorSectionId': ?floorSectionId,
    'label': ?label,
  };
}