getPageBodyWidget method
Implementation
@protected
Widget getPageBodyWidget(BuildContext context) {
if (isLoading) {
return getPageLoadingWidget(context);
}
if (error.isNotEmpty) {
return getPageErrorWidget(context);
}
return getPageWidget(context);
}