StepLog constructor

StepLog({
  1. String? mmdd = '12-12',
  2. String? hhss = '11:00',
  3. String? operationName,
  4. bool isActive = false,
  5. bool isFirstItem = false,
  6. bool isLastItem = false,
  7. bool showNewest = false,
  8. String? description,
  9. double titleTextSize = 14,
  10. Color? activeColor = Colors.blue,
  11. Color? normalColor = Colors.grey,
  12. Color? lineColor = Colors.grey,
  13. Color? dateColor = Colors.grey,
  14. Color? operationColor = Colors.grey,
})

Implementation

StepLog({
  this.mmdd='12-12',
  this.hhss='11:00',
  this.operationName,
  this.isActive=false,
  this.isFirstItem=false,
  this.isLastItem=false,
  this.showNewest=false,
  this.description,
  this.titleTextSize=14,
  this.activeColor=Colors.blue,
  this.normalColor=Colors.grey,
  this.lineColor=Colors.grey,
  this.dateColor=Colors.grey,
  this.operationColor=Colors.grey,
});