Authenticator.fromFlow constructor

Authenticator.fromFlow(
  1. Flow flow, {
  2. dynamic urlLancher(
    1. String url
    )?,
})

Implementation

Authenticator.fromFlow(
  this.flow, {
  Function(String url)? urlLancher,
})  : port = flow.redirectUri.port,
      urlLancher = urlLancher ?? _runBrowser;