detach<T extends Auth<AuthKeys>> static method

void detach<T extends Auth<AuthKeys>>()

Implementation

static void detach<T extends Auth>() {
  final current = _i;
  _i = null;
  if (current != null) {
    try {
      current.dispose();
    } catch (_) {}
  }
}