globalConsume function

SubscriberGlobal globalConsume(
  1. Widget create(), {
  2. Key? key,
})

Create a comsume widget for the watched variable whose value is used inside the widget, and register it to the host to rebuild it when updating the watched variable.

If the value of the watched variable is not used inside the widget, then use watchedVar.consume to create the consumer widget to notify the host to rebuild when updating the watched variable.

Implementation

SubscriberGlobal globalConsume(Widget Function() create, {Key? key}) {
  return SubscriberGlobal(key: key, create: create);
}