NavigationContent constructor

const NavigationContent({
  1. Key? key,
  2. required Widget title,
  3. Widget? content,
  4. Widget? leading,
  5. Widget? trailing,
  6. VoidCallback? onPressed,
})

Implementation

const NavigationContent({
  super.key,
  required this.title,
  this.content,
  this.leading,
  this.trailing,
  this.onPressed,
});