update method

  1. @override
void update(
  1. covariant RenderObjectWidget newWidget
)
override

Change the widget used to configure this element.

The framework calls this function when the parent wishes to use a different widget to configure this element. The new widget is guaranteed to have the same runtimeType as the old widget.

This function is called only during the "active" lifecycle state.

Implementation

@override
void update(covariant RenderObjectWidget newWidget) {
  super.update(newWidget);
  assert(widget == newWidget);
  assert(() {
    _debugUpdateRenderObjectOwner();
    return true;
  }());
  _performRebuild(); // calls widget.updateRenderObject()
}