AuthenticatorInfo constructor

AuthenticatorInfo({
  1. AuthenticationType? type,
  2. String? value,
  3. 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;
}