QULabel constructor

const QULabel({
  1. Key? key,
  2. required String label,
  3. double width = 100,
  4. TextAlign textAlign = TextAlign.left,
  5. bool required = false,
})

Implementation

const QULabel(
    {Key? key,
    required this.label,
    this.width = 100,
    this.textAlign = TextAlign.left,
    this.required = false})
    : super(key: key);