RestrictedAmountPositions constructor

RestrictedAmountPositions({
  1. double maxCoverage = 0.8,
  2. double minCoverage = double.negativeInfinity,
  3. int maxAmountItems = 5,
  4. StackAlign align = StackAlign.left,
  5. InfoItem infoItem = const InfoItem.absent(),
  6. StackLaying laying = StackLaying.last,
  7. LayoutDirection layoutDirection = LayoutDirection.horizontal,
})

Implementation

RestrictedAmountPositions({
  super.maxCoverage,
  super.minCoverage,
  this.maxAmountItems = 5,
  super.align,
  super.infoItem,
  super.laying,
  super.layoutDirection = LayoutDirection.horizontal,
});