callbackUrl property

String? get callbackUrl

The redirect URI to register with initiateAiinOAuth (http://127.0.0.1:<ephemeral-port>/callback).

Implementation

String? get callbackUrl {
  final server = _server;
  return server == null ? null : 'http://127.0.0.1:${server.port}/callback';
}