FastParagraph constructor

const FastParagraph({
  1. Key? key,
  2. EdgeInsets margin = const EdgeInsets.symmetric(vertical: 8.0),
  3. String? text,
  4. Widget? child,
  5. double? fontSize,
})

Implementation

const FastParagraph({
  Key? key,
  this.margin = const EdgeInsets.symmetric(vertical: 8.0),
  this.text,
  this.child,
  this.fontSize,
})  : assert(text != null || child != null),
      super(key: key);