ResendContactEmailCodeRequest constructor

ResendContactEmailCodeRequest({
  1. Instance? instance,
  2. Organization? organization,
  3. String? id,
  4. SendEmailVerificationCode? sendCode,
  5. ReturnEmailVerificationCode? returnCode,
})

Implementation

factory ResendContactEmailCodeRequest({
  $1.Instance? instance,
  $1.Organization? organization,
  $core.String? id,
  $5.SendEmailVerificationCode? sendCode,
  $5.ReturnEmailVerificationCode? returnCode,
}) {
  final result = create();
  if (instance != null) result.instance = instance;
  if (organization != null) result.organization = organization;
  if (id != null) result.id = id;
  if (sendCode != null) result.sendCode = sendCode;
  if (returnCode != null) result.returnCode = returnCode;
  return result;
}