SolidLineConnector constructor

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

Implementation

const SolidLineConnector({
  Key? key,
  Axis? direction,
  double? thickness,
  double? space,
  double? indent,
  double? endIndent,
  Color? color,
}) : super(
        key: key,
        thickness: thickness,
        space: space,
        indent: indent,
        endIndent: endIndent,
        color: color,
      );