scope property

  1. @override
ConnScope get scope
override

Scope returns the user view of this connection's resource scope

Implementation

@override
ConnScope get scope {
  if (_connManagementScope == null) {
    // This indicates an issue with initialization or lifecycle.
    throw StateError('Connection scope accessed before initialization or after failure.');
  }
  return _ConnScopeImpl(_connManagementScope!);
}