2022-03-10 18:39:57 +00:00
|
|
|
|
2020-05-01 07:02:15 +00:00
|
|
|
|
|
|
|
/// Security settings of the user
|
|
|
|
///
|
|
|
|
/// @author Pierre HUBERT
|
|
|
|
|
|
|
|
class SecuritySettings {
|
|
|
|
final String securityQuestion1;
|
|
|
|
final String securityAnswer1;
|
|
|
|
final String securityQuestion2;
|
|
|
|
final String securityAnswer2;
|
|
|
|
|
|
|
|
const SecuritySettings({
|
2022-03-10 18:39:57 +00:00
|
|
|
required this.securityQuestion1,
|
|
|
|
required this.securityAnswer1,
|
|
|
|
required this.securityQuestion2,
|
|
|
|
required this.securityAnswer2,
|
2020-05-01 07:02:15 +00:00
|
|
|
}) : assert(securityQuestion1 != null),
|
|
|
|
assert(securityAnswer1 != null),
|
|
|
|
assert(securityQuestion2 != null),
|
|
|
|
assert(securityAnswer2 != null);
|
|
|
|
}
|