We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8fc9e9 commit 1ea5765Copy full SHA for 1ea5765
lib/src/oauth_grant.dart
@@ -43,13 +43,13 @@ class ClientCredentialsGrant extends OAuthGrant {
43
44
/// Obtains credentials using a [authorization code grant](https://tools.ietf.org/html/rfc6749#section-1.3.1).
45
class AuthorizationCodeGrant extends OAuthGrant {
46
- const AuthorizationCodeGrant(
47
- this.tokenEndpoint,
48
- this.scopes,
49
- this.redirectUrl,
50
- this.redirect,
51
- this.listen,
52
- );
+ const AuthorizationCodeGrant({
+ required this.tokenEndpoint,
+ required this.scopes,
+ required this.redirectUrl,
+ required this.redirect,
+ required this.listen,
+ });
53
54
final Uri tokenEndpoint;
55
final Uri redirectUrl;
0 commit comments