remove static method

void remove(
  1. String identify
)

Use this method to remove a widget what follow the component

Implementation

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