setAuthenticate abstract method

void setAuthenticate(
  1. Future<bool> f(
    1. Uri url,
    2. String scheme,
    3. String? realm
    )?
)

Sets the function to be called when a site is requesting authentication.

Implementation

void setAuthenticate(
    Future<bool> Function(Uri url, String scheme, String? realm)? f);