AndroidHttpAuthCredentialDatabase constructor
AndroidHttpAuthCredentialDatabase(
- PlatformHttpAuthCredentialDatabaseCreationParams params
Creates a new AndroidHttpAuthCredentialDatabase.
Implementation
AndroidHttpAuthCredentialDatabase(
PlatformHttpAuthCredentialDatabaseCreationParams params)
: super.implementation(
params is AndroidHttpAuthCredentialDatabaseCreationParams
? params
: AndroidHttpAuthCredentialDatabaseCreationParams
.fromPlatformHttpAuthCredentialDatabaseCreationParams(params),
) {
channel = const MethodChannel(
'com.pichillilorenzo/flutter_inappwebview_credential_database');
handler = handleMethod;
initMethodCallHandler();
}