ContainerView constructor

const ContainerView({
  1. required decorationPriority decorationVariant,
  2. required ContainerWrapperElement builder,
  3. bool? takesFullWidth = false,
  4. bool? hasBackgroundImage = true,
  5. bool? showQuickActionBar = true,
  6. bool? hasExitBar = false,
  7. bool? shouldManageNotifications = true,
})

Implementation

const ContainerView({
  required this.decorationVariant,
  required this.builder,
  this.takesFullWidth = false,
  this.hasBackgroundImage = true,
  this.showQuickActionBar = true,
  this.hasExitBar = false,
  this.shouldManageNotifications = true,
});