QUDivider constructor

const QUDivider({
  1. Key? key,
  2. String? text,
  3. bool bold = false,
  4. Color? color,
  5. EQUDividerAlign alignment = EQUDividerAlign.LEFT,
})

Implementation

const QUDivider(
    {Key? key,
    this.text,
    this.bold = false,
    this.color,
    this.alignment = EQUDividerAlign.LEFT})
    : super(key: key);