CustomDivider constructor

const CustomDivider({
  1. Key? key,
  2. double? height,
  3. Color? color,
  4. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

const CustomDivider({
  super.key,
  this.height,
  this.color,
  this.padding = EdgeInsets.zero,
});