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