Guideline constructor

const Guideline({
  1. Key? key,
  2. required ConstraintId id,
  3. double? guidelineBegin,
  4. double? guidelineEnd,
  5. double? guidelinePercent,
  6. bool horizontal = false,
})

Implementation

const Guideline({
  Key? key,
  required this.id,
  this.guidelineBegin,
  this.guidelineEnd,
  this.guidelinePercent,
  this.horizontal = false,
}) : super(key: key);