UpdateHumanPhoneRequest constructor
Implementation
factory UpdateHumanPhoneRequest({
$core.String? userId,
$core.String? phone,
$core.bool? isPhoneVerified,
}) {
final result = create();
if (userId != null) result.userId = userId;
if (phone != null) result.phone = phone;
if (isPhoneVerified != null) result.isPhoneVerified = isPhoneVerified;
return result;
}