Connector.solidLine constructor

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

Creates a solid line connector.

See also:

Implementation

factory Connector.solidLine({
  Key? key,
  Axis? direction,
  double? thickness,
  double? space,
  double? indent,
  double? endIndent,
  Color? color,
}) {
  return SolidLineConnector(
    key: key,
    direction: direction,
    thickness: thickness,
    space: space,
    indent: indent,
    endIndent: endIndent,
    color: color,
  );
}