GetHumanPhoneResponse constructor

GetHumanPhoneResponse({
  1. ObjectDetails? details,
  2. Phone? phone,
})

Implementation

factory GetHumanPhoneResponse({
  $8.ObjectDetails? details,
  $11.Phone? phone,
}) {
  final $result = create();
  if (details != null) {
    $result.details = details;
  }
  if (phone != null) {
    $result.phone = phone;
  }
  return $result;
}