getHttpAuthCredentials method

Future<List<URLCredential>> getHttpAuthCredentials({
  1. required URLProtectionSpace protectionSpace,
})

Gets all the HTTP auth credentials saved for that protectionSpace.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS

Implementation

Future<List<URLCredential>> getHttpAuthCredentials(
        {required URLProtectionSpace protectionSpace}) =>
    platform.getHttpAuthCredentials(protectionSpace: protectionSpace);