clearDecorationLayer method

void clearDecorationLayer(
  1. String layerKey
)

Clears one named decoration layer.

Implementation

void clearDecorationLayer(String layerKey) {
  final changed = _model.clearDecorationLayer(layerKey);
  if (changed) {
    notifyListeners();
  }
}