authorize method

Future<Credential> authorize({
  1. dynamic urlLauncher(
    1. String url
    )?,
})

Implementation

Future<Credential> authorize({Function(String url)? urlLauncher}) {
  return Authenticator.fromFlow(this, urlLancher: urlLauncher).authorize();
}