MaxNativeAdBodyView constructor

const MaxNativeAdBodyView({
  1. Key? key,
  2. TextStyle? style,
  3. TextAlign? textAlign,
  4. bool? softWrap,
  5. TextOverflow? overflow,
  6. int? maxLines,
})

Displays the body text of the native ad using a Text widget. The body text is provided by the native ad loader.

Implementation

const MaxNativeAdBodyView({
  super.key,
  this.style,
  this.textAlign,
  this.softWrap,
  this.overflow,
  this.maxLines,
});