MyDivider constructor

const MyDivider({
  1. double height = Siz.standardPadding,
  2. Color color = Clr.colorTransparent,
  3. double? thickness,
  4. Key? key,
})

Implementation

const MyDivider(
    {this.height = Siz.standardPadding,
    this.color = Clr.colorTransparent,
    this.thickness,
    super.key});