DocumentFormatter constructor

DocumentFormatter({
  1. String? title,
  2. String? author,
  3. String? excerpt,
  4. String? category,
  5. DateTime? date,
  6. int order = 1,
  7. String? iconUrl,
  8. String? iconDarkUrl,
  9. String? description,
  10. bool hideTableContent = false,
})

Implementation

DocumentFormatter(
    {this.title,
    this.author,
    this.excerpt,
    this.category,
    this.date,
    this.order = 1,
    this.iconUrl,
    this.iconDarkUrl,
    this.description,
    this.hideTableContent = false});