ImportHumanUserRequest_RecoveryCode constructor

ImportHumanUserRequest_RecoveryCode({
  1. String? raw,
  2. String? hash,
})

Implementation

factory ImportHumanUserRequest_RecoveryCode({
  $core.String? raw,
  $core.String? hash,
}) {
  final result = create();
  if (raw != null) result.raw = raw;
  if (hash != null) result.hash = hash;
  return result;
}