TopNavigation constructor

const TopNavigation({
  1. Key? key,
  2. required String pagelist,
  3. required String height,
  4. required String renderbackbutton,
  5. required String logourl,
  6. required Widget child,
  7. required String logowidth,
  8. required String logoheight,
})

Implementation

const TopNavigation({
  super.key,
  required this.pagelist,
  required this.height,
  required this.renderbackbutton,
  required this.logourl,
  required this.child,
  required this.logowidth,
  required this.logoheight,
});