current property

S get current

Implementation

static S get current {
  assert(
    _current != null,
    'No instance of S was loaded. Try to initialize the S delegate before accessing S.current.',
  );
  return _current!;
}