show method

void show(
  1. T key
)

Implementation

void show(T key) {
  final builder = getBuilder(key);
  if (builder != null) {
    builder.visible = true;
    // builder.state = LayerContainerState.visible;
    notifyListeners();
  }
}