CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. List<Widget>? actions,
  5. VoidCallback? onMenuTap,
  6. ErpThemeVariant? currentTheme,
  7. void onThemeChanged(
    1. ErpThemeVariant
    )?,
})

Implementation

const CustomAppBar({
  Key? key,
  required this.title,
  required this.subtitle,
  this.actions, this.onMenuTap, this.currentTheme, this.onThemeChanged,
}) : super(key: key);