Body2Text.light constructor

const Body2Text.light(
  1. String text, {
  2. bool? softWrap,
  3. int? maxLines,
  4. TextOverflow? overflow,
  5. Color? color,
  6. Key? key,
})

Implementation

const Body2Text.light(this.text, {this.softWrap, this.maxLines, this.overflow, this.color, Key? key})
    : fontType = FontType.light,
      super(key: key);