show method

  1. @override
void show(
  1. bool show
)
override

Show/Hide the floor selector, this is called when a building comes into/out of view

Implementation

@override
void show(bool show) {
  if (_visible != show) {
    setState(() {
      _visible = show;
    });
  }
}