url method

Uri url(
  1. List<String> scopes,
  2. String state, {
  3. String duration = 'permanent',
  4. bool compactLogin = false,
})

Not implemented for Authenticators other than WebAuthenticator.

Implementation

Uri url(List<String> scopes, String state,
    {String duration = 'permanent', bool compactLogin = false}) {
  throw DRAWInternalError("'url' is only implemented for 'WebAuthenticator'");
}