CLSeparator constructor

const CLSeparator({
  1. Key? key,
  2. Axis axis = Axis.horizontal,
  3. double thickness = 1.0,
})

Implementation

const CLSeparator({
  super.key,
  this.axis = Axis.horizontal,
  this.thickness = 1.0,
});