ComDivider constructor

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

Implementation

const ComDivider({
  super.key,
  this.color,
  this.thickness = 0.5,
  this.indent = 0.0,
  this.endIndent = 0.0,
});