UpdateUserResponse constructor
Implementation
factory UpdateUserResponse({
$7.Timestamp? changeDate,
$core.String? emailCode,
$core.String? phoneCode,
}) {
final result = create();
if (changeDate != null) result.changeDate = changeDate;
if (emailCode != null) result.emailCode = emailCode;
if (phoneCode != null) result.phoneCode = phoneCode;
return result;
}