PromptUserForConsentManual typedef
Function for directing the user or it's user-agent to uri
.
The user is required to go to uri
and either approve or decline the
application's request for access resources on their behalf.
The user will be given an authorization code. This function should complete with this authorization code. If the user declined to give access this function should complete with an error.
Implementation
typedef PromptUserForConsentManual = Future<String> Function(String uri);