IDPOwnerTypeQuery constructor

IDPOwnerTypeQuery({
  1. IDPOwnerType? ownerType,
})

Implementation

factory IDPOwnerTypeQuery({
  IDPOwnerType? ownerType,
}) {
  final $result = create();
  if (ownerType != null) {
    $result.ownerType = ownerType;
  }
  return $result;
}