ResendContactPhoneCodeRequest constructor

ResendContactPhoneCodeRequest({
  1. String? userId,
  2. SendPhoneVerificationCode? sendCode,
  3. ReturnPhoneVerificationCode? returnCode,
})

Implementation

factory ResendContactPhoneCodeRequest({
  $core.String? userId,
  $5.SendPhoneVerificationCode? sendCode,
  $5.ReturnPhoneVerificationCode? returnCode,
}) {
  final $result = create();
  if (userId != null) {
    $result.userId = userId;
  }
  if (sendCode != null) {
    $result.sendCode = sendCode;
  }
  if (returnCode != null) {
    $result.returnCode = returnCode;
  }
  return $result;
}