isolateState method

IsolateState isolateState(
  1. IsolateRef isolateRef
)

Implementation

IsolateState isolateState(IsolateRef isolateRef) {
  return _isolateStates.putIfAbsent(
    isolateRef,
    () => IsolateState(isolateRef),
  );
}