MiniDivider constructor

const MiniDivider({
  1. Key? key,
  2. double thickness = 1,
  3. double indent = 0,
  4. double endIndent = 0,
})

Implementation

const MiniDivider({
  super.key,
  this.thickness = 1,
  this.indent = 0,
  this.endIndent = 0,
});