forceUpdate method
Implementation
@override
void forceUpdate(Component2 component, SetStateCallback? callback) {
if (callback == null) {
component.jsThis.forceUpdate();
} else {
component.jsThis.forceUpdate(allowInterop(callback));
}
}