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