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