IDPOwnerTypeQuery constructor

IDPOwnerTypeQuery({
  1. IDPOwnerType? ownerType,
})

Implementation

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