CLDivider constructor

const CLDivider({
  1. Key? key,
  2. double? height,
  3. String? label,
  4. TextStyle? labelStyle,
  5. Color? color,
})

Implementation

const CLDivider({
  super.key,
  this.height,
  this.label,
  this.labelStyle,
  this.color,
});