ArticleSectionComponent constructor

const ArticleSectionComponent({
  1. required String title,
  2. required VoidCallback onPressed,
  3. Key? key,
  4. String? description,
  5. Widget? child,
  6. bool useChild = false,
  7. bool useButton = false,
  8. Color? color,
})

Implementation

const ArticleSectionComponent({
  required this.title,
  required this.onPressed,
  super.key,
  this.description,
  this.child,
  this.useChild = false,
  this.useButton = false,
  this.color,
});