createEmptyView method

  1. @protected
Widget createEmptyView()

Implementation

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