DrawerContainer constructor

const DrawerContainer({
  1. Key? key,
  2. required Widget child,
  3. double startPadding = 0,
  4. double endPadding = 0,
  5. AxisSize? size,
  6. double alignment = 0,
  7. bool expands = false,
  8. bool intrinsic = true,
})

Creates a data-driven drawer container.

Implementation

const DrawerContainer({
  super.key,
  required this.child,
  this.startPadding = 0,
  this.endPadding = 0,
  this.size,
  this.alignment = 0,
  this.expands = false,
  this.intrinsic = true,
});