GuideLine constructor

const GuideLine({
  1. bool show = true,
  2. num length = 16,
  3. LineStyle style = const LineStyle(color: Colors.black),
  4. List<num> gap = const [4, 0],
})

Implementation

const GuideLine({
  this.show = true,
  this.length = 16,
  this.style = const LineStyle(color: Colors.black),
  this.gap = const [4, 0],
});