I extended AppBar with my custom widget.Then passed my parameters to the super class.
class CustomAppBar extends AppBar { CustomAppBar() : super( title: Text('MyApp'), actions: [ IconButton(icon: Icon(Icons.search), onPressed: () {}), ], );}