DigitTableItemTitle constructor

const DigitTableItemTitle({
  1. Key? key,
  2. double? width,
  3. required String label,
  4. double? height,
  5. EdgeInsets? padding,
})

Implementation

const DigitTableItemTitle({
  super.key,
  this.width,
  required this.label,
  this.height,
  this.padding,
});