ReferralsTable constructor

ReferralsTable({
  1. Key? key,
  2. required String userId,
  3. bool includeBalances = true,
  4. int limit = 10,
  5. String? hierarchyType,
  6. String? uptoPartner,
  7. int? skip,
  8. String? orderByRank,
  9. String? orderByCount,
  10. String? relativeTo,
})

Implementation

ReferralsTable({
  super.key,
  required this.userId,
  this.includeBalances = true,
  this.limit = 10,
  this.hierarchyType,
  this.uptoPartner,
  this.skip,
  this.orderByRank,
  this.orderByCount,
  this.relativeTo,
});