leftAndRight property

Widget leftAndRight

Implementation

Widget get leftAndRight =>
    Row(mainAxisAlignment: MainAxisAlignment.spaceAround, children: [
      Expanded(child: left!),
      Expanded(child: right!),
    ]);