CreateUserResponse constructor
Implementation
factory CreateUserResponse({
$2.Details? details,
$core.String? emailCode,
$core.String? phoneCode,
}) {
final result = create();
if (details != null) result.details = details;
if (emailCode != null) result.emailCode = emailCode;
if (phoneCode != null) result.phoneCode = phoneCode;
return result;
}