CustomDivider constructor

const CustomDivider({
  1. Key? key,
  2. bool? isHor = true,
  3. double? height,
  4. double? width,
  5. Color? color,
  6. EdgeInsetsGeometry? margin,
  7. double? thickness = .8,
})

Implementation

const CustomDivider({
  super.key,
  this.isHor = true,
  this.height,
  this.width,
  this.color,
  this.margin,
  this.thickness = .8,
});