removeHttpAuthCredential method

Future<void> removeHttpAuthCredential({
  1. required URLProtectionSpace protectionSpace,
  2. required URLCredential credential,
})

Removes an HTTP auth credential for that protectionSpace.

Officially Supported Platforms/Implementations:

Implementation

Future<void> removeHttpAuthCredential(
    {required URLProtectionSpace protectionSpace,
    required URLCredential credential}) {
  throw UnimplementedError(
      'removeHttpAuthCredential is not implemented on the current platform');
}