WebScreenAppBar constructor

const WebScreenAppBar({
  1. Key? key,
  2. required String? pageTitle,
  3. required bool hasPageTitle,
  4. required List<ButtonConfig> buttons,
  5. ActionConfig? action,
})

Implementation

const WebScreenAppBar({
  Key? key,
  this.logo,
  required this.pageTitle,
  required this.hasPageTitle,
  required this.buttons,
  this.action,
}) : super(key: key);