LiquidAppBar constructor

LiquidAppBar({
  1. Key? key,
  2. required String title,
  3. Widget appBarTrailing = const Text(''),
  4. List<ActionButton>? actions,
  5. required Widget screen,
})

Implementation

LiquidAppBar({
  this.key,
  required this.title,
  this.appBarTrailing = const Text(''),
  this.actions,
  required this.screen,
});