ZebaCollapsingAppBar constructor

const ZebaCollapsingAppBar({
  1. Key? key,
  2. required String title,
  3. required Widget background,
  4. double expandedHeight = 250,
})

Implementation

const ZebaCollapsingAppBar({
  super.key,
  required this.title,
  required this.background,
  this.expandedHeight = 250,
});