createEmptyView method
Implementation
@protected
Widget createEmptyView() => Container(
width: double.infinity,
height: double.infinity,
color: widget.bodyColor,
child: Obx(
() => PublicWidget.createEmptyView(
emptyText: controller.emptyMessage,
onTap: () => controller.retryOperation(),
),
),
);