get method

T get(
  1. int handle
)

Implementation

T get(int handle) {
  final obj = _map[handle];
  if (obj == null) {
    throw UniffiInternalError(
        UniffiInternalError.unexpectedStaleHandle, "Handle not found");
  }
  return obj;
}