AndroidHttpAuthCredentialDatabase constructor

AndroidHttpAuthCredentialDatabase(
  1. PlatformHttpAuthCredentialDatabaseCreationParams params
)

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();
}