BackgroundView constructor

const BackgroundView({
  1. Key? key,
  2. required Widget contentWidget,
  3. String? title,
  4. Widget? appBarEndActions,
  5. Widget? appBarStartActions,
})

Implementation

const BackgroundView({
  super.key,
  required this.contentWidget,
  this.title,
  this.appBarEndActions,
  this.appBarStartActions,
});