GBText constructor

const GBText(
  1. String? text, {
  2. Key? key,
  3. TextAlign? textAlign,
  4. TextStyle? style,
  5. int? maxLines,
})

Implementation

const GBText(
  this.text, {
  Key? key,
  this.textAlign,
  this.style,
  this.maxLines,
}) : super(key: key);