FastArticle constructor

const FastArticle({
  1. Key? key,
  2. required String titleText,
  3. EdgeInsets titleMargin = const EdgeInsets.symmetric(vertical: 16.0),
  4. Iterable<Widget>? children,
})

Implementation

const FastArticle({
  Key? key,
  required this.titleText,
  this.titleMargin = const EdgeInsets.symmetric(vertical: 16.0),
  this.children,
}) : super(key: key);