listItemTallPad method

Widget listItemTallPad({
  1. Key? key,
})

Implementation

Widget listItemTallPad({Key? key}) {
  final x2 = SunnySpacing().spaceUnit * 2;
  return Padding(
    key: key,
    padding: EdgeInsets.only(
        left: x2, right: x2, bottom: SunnySpacing().spaceUnit * 5),
    child: this,
  );
}