Divid constructor

const Divid({
  1. Key? key,
  2. double? thickness,
  3. double? indent,
  4. double? endIndent,
  5. Color? color,
})

Draw a dividing line.

Implementation

const Divid({
  Key? key,
  double? thickness,
  double? indent,
  double? endIndent,
  Color? color,
}) : super(
        key: key,
        thickness: thickness,
        indent: indent,
        height: 1,
        endIndent: endIndent,
        color: color,
      );