AuthClient constructor
AuthClient({
- required String scheme,
- required AuthFunction authFunction,
- Identity? identity,
- String path = "",
- SignIdentity? key,
- DelegationChain? chain,
- Uri? authUri,
Implementation
AuthClient({
required this.scheme,
required this.authFunction,
this.identity,
this.path = "",
this.key,
this.chain,
this.authUri,
}) {
identity ??= AnonymousIdentity();
}