reassemble method

  1. @override
void reassemble ()
inherited

Called whenever the application is reassembled during debugging, for example during hot reload.

This method should rerun any initialization logic that depends on global state, for example, image loading from asset bundles (since the asset bundle may have changed).

This function will only be called during development. In release builds, the ext.flutter.reassemble hook is not available, and so this code will never execute. See also:

Implementation

@override
void reassemble() {
  state.reassemble();
  super.reassemble();
}