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 5586c16 commit 4725074Copy full SHA for 4725074
packages/test/amplify_auth_integration_test/lib/src/test_runner.dart
@@ -145,6 +145,7 @@ class MfaInfo {
145
this.required = false,
146
this.smsEnabled = false,
147
this.totpEnabled = false,
148
+ this.emailEnabled = false,
149
});
150
151
/// Whether MFA is required (`true`) or optional (`false`).
@@ -155,6 +156,9 @@ class MfaInfo {
155
156
157
/// Whether TOTP MFA is available.
158
final bool totpEnabled;
159
+
160
+ /// Whether email MFA is available.
161
+ final bool emailEnabled;
162
}
163
164
/// A test environment descriptor.
0 commit comments