GetMyPhoneResponse constructor

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

Implementation

factory GetMyPhoneResponse({
  $3.ObjectDetails? details,
  $1.Phone? phone,
}) {
  final result = create();
  if (details != null) result.details = details;
  if (phone != null) result.phone = phone;
  return result;
}