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