AuthCodeController constructor Null safety
- @Deprecated('Use AuthRedirectController instead.')
- AuthServer authServer,
- {AuthCodeControllerDelegate? delegate}
Creates a new instance of an AuthCodeController.
authServer is the required authorization server. If delegate is provided, this controller will return a login page for all GET requests.
Implementation
@Deprecated('Use AuthRedirectController instead.')
AuthCodeController(this.authServer, {this.delegate}) {
acceptedContentTypes = [
ContentType("application", "x-www-form-urlencoded")
];
}