AddSecondFactorToLoginPolicyRequest constructor

AddSecondFactorToLoginPolicyRequest({
  1. SecondFactorType? type,
})

Implementation

factory AddSecondFactorToLoginPolicyRequest({
  $7.SecondFactorType? type,
}) {
  final result = create();
  if (type != null) result.type = type;
  return result;
}