UnAppPage constructor Null safety

const UnAppPage(
  1. {Key? key,
  2. required Widget name,
  3. Widget? description,
  4. required List<Widget> slivers,
  5. bool implyLeading = true,
  6. Widget? leading,
  7. Widget? trailing,
  8. bool isImmersive = false}
)

Implementation

const UnAppPage({
  super.key,
  required this.name,
  this.description,
  required this.slivers,
  this.implyLeading = true,
  this.leading,
  this.trailing,
  this.isImmersive = false,
});