BasicDivider constructor

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

Implementation

const BasicDivider({
  required this.type,
  this.thickness = 1.0,
  this.indent = 0.0,
  this.endIndent = 0.0,
  this.color,
  super.key,
});