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