File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/auth/amplify_auth_cognito_dart/lib/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1005,10 +1005,10 @@ class AmplifyAuthCognitoDart extends AuthPluginInterface
1005
1005
throw const DeviceNotTrackedException ();
1006
1006
}
1007
1007
1008
- late GetDeviceResponse resp ;
1008
+ late GetDeviceResponse response ;
1009
1009
1010
1010
try {
1011
- resp = await _cognitoIdp
1011
+ response = await _cognitoIdp
1012
1012
.getDevice (
1013
1013
cognito.GetDeviceRequest (
1014
1014
deviceKey: deviceKey,
@@ -1020,7 +1020,7 @@ class AmplifyAuthCognitoDart extends AuthPluginInterface
1020
1020
throw AuthException .fromException (error);
1021
1021
}
1022
1022
1023
- final device = resp .device;
1023
+ final device = response .device;
1024
1024
final attributes =
1025
1025
device.deviceAttributes ?? const < cognito.AttributeType > [];
1026
1026
You can’t perform that action at this time.
0 commit comments