hideOverlay static method

void hideOverlay([
  1. int layerId = 0
])

Implementation

static void hideOverlay([int layerId = 0]) {
  if (_lastOverlays[layerId] != null) {
    _lastOverlays[layerId]!.remove();
    _lastOverlays[layerId] = null;
  }
}