instance static method

Gets the HttpAuthCredentialDatabase shared instance.

Implementation

static HttpAuthCredentialDatabase instance() {
  if (_instance == null) {
    _instance = HttpAuthCredentialDatabase();
  }
  return _instance!;
}