selectFloor method

void selectFloor(
  1. int identifier
)

Select a floor of the current building by its Floor.identifier.

NOTE: introducing an invalid identifier may result in unexpected behaviours.

Implementation

void selectFloor(int identifier) async {
  _sendMessage(
      WV_MESSAGE_CARTOGRAPHY_SELECT_FLOOR, {"identifier": identifier});
}