GetHumanPhoneResponse constructor

GetHumanPhoneResponse({
  1. ObjectDetails? details,
  2. 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;
}