CustomAppBar constructor

CustomAppBar({
  1. Key? key,
  2. String? title,
  3. double elevation = 0.0,
  4. bool showBackButton = false,
  5. List<Widget> actionItems = const <Widget>[],
})

Implementation

CustomAppBar(
    {Key? key,
    this.title,
    this.elevation = 0.0,
    this.showBackButton = false,
    this.actionItems = const <Widget>[]})
    : super(key: key);