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 627c3f1 commit a7be58dCopy full SHA for a7be58d
packages/test/amplify_integration_test/lib/src/stubs/amplify_auth_cognito_stub.dart
@@ -368,6 +368,13 @@ class AmplifyAuthCognitoStub extends AuthPluginInterface
368
);
369
}
370
371
+ @override
372
+ Future<AuthDevice> fetchCurrentDevice() async {
373
+ throw UnimplementedError(
374
+ 'fetchCurrentDevice is not implemented.',
375
+ );
376
+ }
377
+
378
@override
379
Future<void> forgetDevice([AuthDevice? device]) async {
380
throw UnimplementedError(
@@ -391,7 +398,6 @@ class AmplifyAuthCognitoStub extends AuthPluginInterface
391
398
392
399
393
400
class MockCognitoUser {
394
-
395
401
factory MockCognitoUser({
396
402
required String username,
397
403
required String password,
0 commit comments