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