PXText constructor

const PXText({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. TextAlign? textAlign,
  5. TextOverflow? overflow,
  6. int? maxLines,
  7. EdgeInsets? padding,
  8. bool spaceBottom = false,
})

Implementation

const PXText({
  super.key,
  required this.text,
  this.style,
  this.textAlign,
  this.overflow,
  this.maxLines,
  this.padding,
  this.spaceBottom = false,
});