onCreateListBodyView method

Widget? onCreateListBodyView()

Implementation

Widget? onCreateListBodyView() {
  if (listViewBackroundColor != null) {
    return Container(
      color: listViewBackroundColor,
      child: onCreateListView(),
    );
  }
  return onCreateListView();
}