DecoratedLineConnector constructor

const DecoratedLineConnector({
  1. Key? key,
  2. Axis? direction,
  3. double? thickness,
  4. double? space,
  5. double? indent,
  6. double? endIndent,
  7. Decoration? decoration,
})

Creates a decorated line connector.

The thickness, space, indent, and endIndent must be null or non-negative.

Implementation

const DecoratedLineConnector({
  Key? key,
  Axis? direction,
  double? thickness,
  double? space,
  double? indent,
  double? endIndent,
  this.decoration,
}) : super(
        key: key,
        thickness: thickness,
        space: space,
        indent: indent,
        endIndent: endIndent,
      );