GetHumanPhoneResponse constructor
GetHumanPhoneResponse({
- ObjectDetails? details,
- Phone? phone,
Implementation
factory GetHumanPhoneResponse({
$2.ObjectDetails? details,
$1.Phone? phone,
}) {
final result = create();
if (details != null) result.details = details;
if (phone != null) result.phone = phone;
return result;
}