didUpdateWidget method

  1. @override
void didUpdateWidget(
  1. covariant Form oldWidget
)
override

Called whenever the widget configuration changes.

Implementation

@override
void didUpdateWidget(covariant Form oldWidget) {
  super.didUpdateWidget(oldWidget);
  widget._state = this;
  widget._activeFieldIndex = oldWidget._activeFieldIndex;
}