DrawerContainer.alignEnd constructor

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

A drawer container aligned to the cross-axis end.

Implementation

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