registerForceUpdateFunction method

void registerForceUpdateFunction(
  1. void forceUpdate()
)

Registers a force update function.

This method is intended to be called by the VisualEffectSubviewContainer widget it has been provided to and should not be called elsewhere.

Implementation

void registerForceUpdateFunction(void Function() forceUpdate) {
  _forceUpdate = forceUpdate;
}