TransparentConnector constructor

const TransparentConnector({
  1. Key? key,
  2. Axis? direction,
  3. double? indent,
  4. double? endIndent,
  5. double? space,
})

Creates a transparent connector.

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

Implementation

const TransparentConnector({
  Key? key,
  Axis? direction,
  double? indent,
  double? endIndent,
  double? space,
}) : super(
        key: key,
        direction: direction,
        indent: indent,
        endIndent: endIndent,
        space: space,
      );