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