AuthenticatorInfo constructor
AuthenticatorInfo({
- AuthenticationType? type,
- String? value,
- bool? isDeactivated,
Implementation
factory AuthenticatorInfo({
AuthenticationType? type,
$core.String? value,
$core.bool? isDeactivated,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (value != null) {
$result.value = value;
}
if (isDeactivated != null) {
$result.isDeactivated = isDeactivated;
}
return $result;
}