RelationsSearchParameters constructor

RelationsSearchParameters({
  1. required String rootId,
  2. required EntityType rootType,
  3. EntitySearchDirection direction = EntitySearchDirection.FROM,
  4. RelationTypeGroup? relationTypeGroup,
  5. int maxLevel = 1,
  6. bool fetchLastLevelOnly = false,
})

Implementation

RelationsSearchParameters(
    {required this.rootId,
    required this.rootType,
    this.direction = EntitySearchDirection.FROM,
    this.relationTypeGroup,
    this.maxLevel = 1,
    this.fetchLastLevelOnly = false});