CustomDivider constructor

const CustomDivider({
  1. Key? key,
  2. Color? color,
  3. double? height = 0.25,
  4. EdgeInsets? margin,
  5. int? flex,
})

Implementation

const CustomDivider({
  super.key,
  this.color,
  this.height = 0.25,
  this.margin,
  this.flex
});