AlignmentBasedBorderSegment constructor

AlignmentBasedBorderSegment({
  1. double initialSize = 220.0,
  2. double heightFactor = 0.6,
  3. required BorderSegmentAlignment alignment,
  4. required Color color,
})

Implementation

AlignmentBasedBorderSegment({
  super.initialSize,
  super.heightFactor,
  required BorderSegmentAlignment alignment,
  required super.color,
}) : super(alignment: alignment);