remove static method

dynamic remove(
  1. String identify
)

Use this method to remove a widget what follow the component

Implementation

static remove(String identify) {
  if (_mapOverlayEntry.containsKey(identify)) {
    _mapOverlayEntry[identify]?.remove();
    _mapOverlayEntry.remove(identify);
  }
}