DynamoStateFlow constructor

const DynamoStateFlow({
  1. Key? key,
  2. int visibleCount = 4,
  3. bool isHorizontal = true,
  4. Color? lightBackground,
  5. Color? lightForeground,
  6. Color? darkBackground,
  7. Color? darkForeground,
  8. double borderRadius = 12.0,
  9. double lineThickness = 2.0,
  10. double spacing = 16.0,
  11. bool? showLabelMode = false,
  12. Color? stateNameColor = Colors.indigo,
  13. int? allSteps,
  14. int? index,
  15. dynamic findActionStepBySystemStepNo(
    1. int
    )?,
})

Implementation

const DynamoStateFlow({
  super.key,
  this.visibleCount = 4,
  this.isHorizontal = true,
  this.lightBackground,
  this.lightForeground,
  this.darkBackground,
  this.darkForeground,
  this.borderRadius = 12.0,
  this.lineThickness = 2.0,
  this.spacing = 16.0,
  this.showLabelMode = false,
  this.stateNameColor = Colors.indigo,
  this.allSteps,
  this.index,
  this.findActionStepBySystemStepNo,
});