createErrorView method

  1. @protected
Widget createErrorView()

Implementation

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