PluginAppBar constructor

const PluginAppBar({
  1. Key? key,
  2. Widget? title,
  3. double? toolbarHeight,
  4. Color? backgroundColor = Colors.transparent,
  5. bool? centerTitle = true,
  6. Widget? leading,
  7. TextStyle? titleTextStyle,
  8. bool isShowLeading = true,
  9. double? leadingWidth,
  10. List<Widget>? actions,
})

Implementation

const PluginAppBar(
    {Key? key,
    this.title,
    this.toolbarHeight,
    this.backgroundColor = Colors.transparent,
    this.centerTitle = true,
    this.leading,
    this.titleTextStyle,
    this.isShowLeading = true,
    this.leadingWidth,
    this.actions})
    : super(key: key);