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 764b82f commit aef439cCopy full SHA for aef439c
lib/src/components/supa_socials_auth.dart
@@ -125,7 +125,7 @@ class SupaSocialsAuth extends StatefulWidget {
125
final SupaSocialsAuthLocalization localization;
126
127
const SupaSocialsAuth({
128
- Key? key,
+ super.key,
129
this.nativeGoogleAuthConfig,
130
this.enableNativeAppleAuth = true,
131
required this.socialProviders,
@@ -138,7 +138,7 @@ class SupaSocialsAuth extends StatefulWidget {
138
this.scopes,
139
this.queryParams,
140
this.localization = const SupaSocialsAuthLocalization(),
141
- }) : super(key: key);
+ });
142
143
@override
144
State<SupaSocialsAuth> createState() => _SupaSocialsAuthState();
0 commit comments