WebAuthProvider constructor

WebAuthProvider({
  1. required String scheme,
  2. Identity? identity,
  3. String path = "",
  4. SignIdentity? key,
  5. DelegationChain? chain,
  6. Uri? authUri,
  7. AuthFunction authFunction = webAuth,
  8. bool useLocalPage = true,
  9. int port = 32768,
})

Implementation

WebAuthProvider(
    {required String scheme,
    Identity? identity,
    String path = "",
    SignIdentity? key,
    DelegationChain? chain,
    Uri? authUri,
    AuthFunction authFunction = webAuth,
    this.useLocalPage = true,
    this.port = 32768})
    : super(
          scheme: scheme,
          authFunction: authFunction,
          identity: identity,
          path: path,
          key: key,
          chain: chain,
          authUri: authUri);