CLTitle constructor

const CLTitle(
  1. String title, {
  2. Key? key,
  3. TextStyle? style,
  4. bool dividerTop = false,
  5. bool dividerBottom = false,
})

Implementation

const CLTitle(
  this.title, {
  super.key,
  this.style,
  this.dividerTop = false,
  this.dividerBottom = false,
});