EditModeBackgroundStyle constructor

const EditModeBackgroundStyle({
  1. bool dualLineVertical = true,
  2. bool dualLineHorizontal = true,
  3. double lineWidth = 0.7,
  4. Color lineColor = Colors.black54,
  5. Color fillColor = Colors.black38,
  6. double outherRadius = 8,
})

in default lines are dual.

Implementation

const EditModeBackgroundStyle(
    {this.dualLineVertical = true,
    this.dualLineHorizontal = true,
    this.lineWidth = 0.7,
    this.lineColor = Colors.black54,
    this.fillColor = Colors.black38,
    this.outherRadius = 8});