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