copyWith method

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

Implementation

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