remove method

void remove(
  1. int handle
)

Implementation

void remove(int handle) {
  if (_map.remove(handle) == null) {
    throw UniffiInternalError(
        UniffiInternalError.unexpectedStaleHandle, "Handle not found");
  }
}