ExpandedLine constructor

const ExpandedLine({
  1. Key? key,
  2. double width = 1,
  3. double height = 1,
  4. bool isVertical = false,
  5. Color? color,
})

Implementation

const ExpandedLine(
    {Key? key,
    this.width = 1,
    this.height = 1,
    this.isVertical = false,
    this.color})
    : super(key: key);