showBasicAuthenticator static method

Future showBasicAuthenticator(
  1. BasicAuthAuthenticator authenticator
)

Implementation

static Future showBasicAuthenticator(
    simpleAuth.BasicAuthAuthenticator authenticator) async {
  showDialog(
      context: context,
      builder: (BuildContext context) => new BasicLoginPage(authenticator));
}