unjsifyNewContext static method

dynamic unjsifyNewContext(
  1. Object? interopContext
)

Implementation

static dynamic unjsifyNewContext(Object? interopContext) {
  if (interopContext != null && hasProperty(interopContext, _reactDartContextSymbol)) {
    return DartValueWrapper.unwrapIfNeeded(getProperty(interopContext, _reactDartContextSymbol));
  }
  return interopContext;
}