MoonDivider constructor

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

Implementation

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