DDSDivider constructor

const DDSDivider({
  1. Key? key,
  2. required DividerType type,
  3. double thickness = 1.0,
  4. Color color = Colors.black,
  5. double indent = 0.0,
  6. double endIndent = 0.0,
  7. double width = 1.0,
  8. double height = 1.0,
})

Implementation

const DDSDivider({
  Key? key,
  required this.type,
  this.thickness = 1.0,
  this.color = Colors.black,
  this.indent = 0.0,
  this.endIndent = 0.0,
  this.width = 1.0,
  this.height = 1.0,
}) : super(key: key);