NodeConnectionAuthenticator constructor
NodeConnectionAuthenticator({
- required Authenticator authenticator,
- ChallengeMinter? challenges,
- AuthAuditSink? onRejected,
- Duration timeout = const Duration(seconds: 10),
Creates a connection authenticator.
Implementation
NodeConnectionAuthenticator({
required this.authenticator,
ChallengeMinter? challenges,
this.onRejected,
this.timeout = const Duration(seconds: 10),
}) : challenges = challenges ?? ChallengeMinter();