createPlatformHttpAuthCredentialDatabase method

PlatformHttpAuthCredentialDatabase createPlatformHttpAuthCredentialDatabase(
  1. PlatformHttpAuthCredentialDatabaseCreationParams params
)

Creates a new PlatformHttpAuthCredentialDatabase.

This function should only be called by the app-facing package. Look at using HttpAuthCredentialDatabase in flutter_inappwebview_forge instead.

Implementation

PlatformHttpAuthCredentialDatabase createPlatformHttpAuthCredentialDatabase(
  PlatformHttpAuthCredentialDatabaseCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformHttpAuthCredentialDatabase is not implemented on the current platform.',
  );
}