UnArtPage constructor Null safety

const UnArtPage(
  1. {Key? key,
  2. required Widget emoji,
  3. required Widget name,
  4. Widget? description,
  5. Widget? action,
  6. Widget? background,
  7. required List<Widget> slivers,
  8. Widget? leading,
  9. Widget? trailing}
)

Implementation

const UnArtPage({
  super.key,
  required this.emoji,
  required this.name,
  this.description,
  this.action,
  this.background,
  required this.slivers,
  this.leading,
  this.trailing,
});