CUHeadLabel constructor

const CUHeadLabel(
  1. String label, {
  2. Key? key,
  3. Color color = CUWidget.red,
  4. double left = 42.5,
  5. double top = 20,
  6. double right = 0,
  7. double bottom = 7.5,
})

Implementation

const CUHeadLabel(
  this.label, {
  final Key? key,
  this.color = CUWidget.red,
  this.left = 42.5,
  this.top = 20,
  this.right = 0,
  this.bottom = 7.5,
}) : super(key: key);