CUHeadLabel constructor

const CUHeadLabel(
  1. String label, {
  2. Key? key,
  3. Color? color,
  4. double left = CUWidget.leftPadding,
  5. double top = CUWidget.topPadding,
  6. double right = CUWidget.rightPadding,
  7. double bottom = CUWidget.bottomPadding,
})

Implementation

const CUHeadLabel(
  this.label, {
  final Key? key,
  this.color,
  this.left = CUWidget.leftPadding,
  this.top = CUWidget.topPadding,
  this.right = CUWidget.rightPadding,
  this.bottom = CUWidget.bottomPadding,
}) : super(key: key);