GetHumanProfileResponse constructor

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