buildWithRefErased method
Invokes render through the renderer's erased ref boundary.
Implementation
@override
ReactNode buildWithRefErased(ReactRef<Object?> target) {
final typedTarget = ReactRef<T>.linked(
target.current as T?,
(value) => target.current = value,
);
return render(props, typedTarget);
}