ModLabel constructor

const ModLabel({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. Color? color,
  5. double? fontSize,
  6. TextAlign? align,
})

Implementation

const ModLabel({
  super.key,
  required this.text,
  this.style,
  this.color,
  this.fontSize,
  this.align,
});