BaseDivider constructor

const BaseDivider({
  1. Key? key,
  2. double? thickness,
  3. EdgeInsets? margin,
  4. Color? color,
})

Implementation

const BaseDivider({
  super.key,
  this.thickness,
  this.margin,
  this.color,
}) : assert(thickness == null || thickness >= 0.0);