forceUpdate method

void forceUpdate([
  1. SetStateCallback? callback
])
inherited

Causes render to be called, skipping shouldComponentUpdate.

See: reactjs.org/docs/react-component.html#forceupdate

Implementation

void forceUpdate([SetStateCallback? callback]) {
  _bridge.forceUpdate(this, callback);
}