BasicDivider.horizontal constructor

const BasicDivider.horizontal({
  1. double thickness = 1.0,
  2. double indent = 0.0,
  3. double endIndent = 0.0,
  4. Color? color,
  5. Key? key,
})

Implementation

const BasicDivider.horizontal({
  double thickness = 1.0,
  double indent = 0.0,
  double endIndent = 0.0,
  Color? color,
  Key? key,
}) : this(
        type: DividerType.horizontal,
        thickness: thickness,
        indent: indent,
        endIndent: endIndent,
        color: color,
        key: key,
      );