LeftRightBox constructor

LeftRightBox({
  1. Key? key,
  2. required Widget left,
  3. Widget? right,
  4. VerticalAlign verticalAlign = VerticalAlign.top,
})

Implementation

LeftRightBox({
  Key? key,
  required Widget left,
  Widget? right,
  this.verticalAlign = VerticalAlign.top,
}) : super(key: key, children: [left, if (right != null) right]);