IndoorData constructor

IndoorData({
  1. String? poiId,
  2. int? floor,
  3. bool? isIndoorMap,
  4. String? floorName,
})

Implementation

IndoorData({
    String? poiId,
    int? floor,
    bool? isIndoorMap,
    String? floorName,}){
  _poiId = poiId;
  _floor = floor;
  _isIndoorMap = isIndoorMap;
  _floorName = floorName;
}