ifRxAutoAspectEmpty function

bool ifRxAutoAspectEmpty(
  1. List<Object> rxAutoAspectList
)

Assert rx auto aspect is not empty, i.e. rx automatic aspect is actived.

Implementation

bool ifRxAutoAspectEmpty(List<Object> rxAutoAspectList) {
  if (rxAutoAspectList.isEmpty)
    throw FlutterError(
        'Flutter Mediator Error: No watched variable found in the widget.\n'
        'Try using `watchedVar.consume` or `model.rxVar.touch()`.\n'
        'Or use at least one watched variable in the widget.');
  return true;
}