GetHumanEmailResponse constructor

GetHumanEmailResponse({
  1. ObjectDetails? details,
  2. Email? email,
})

Implementation

factory GetHumanEmailResponse({
  $2.ObjectDetails? details,
  $1.Email? email,
}) {
  final result = create();
  if (details != null) result.details = details;
  if (email != null) result.email = email;
  return result;
}