GetMyEmailResponse constructor

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

Implementation

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