GetHumanProfileResponse constructor

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