AppBarWithOnlyTitle constructor

AppBarWithOnlyTitle({
  1. Key? key,
  2. String? title,
  3. List<Widget>? actions,
  4. bool isBackButtonVisible = false,
  5. Function? backButtonCallback,
  6. bool isTransparent = false,
})

Implementation

AppBarWithOnlyTitle(
    {Key? key,
    this.title,
    this.actions,
    this.showLogo = true,
    this.isBackButtonVisible = false,
    this.backButtonCallback,
      this.isTransparent = false,
    this.businessLogo})
    : super(key: key);