reassemble method

  1. @visibleForOverriding
void reassemble()

What this node does when the tree is reassembled.

By default, this does nothing; Ignis cannot and does not track the external dependencies of arbitrary node implementations. Override this method to refresh those dependencies whenever your code changes.

For nodes that are capable of completely reconstructing themselves using their build method, consider implementing it with rebuild:

@override
void reassemble() => rebuild();

This will enable the highest form of live reload: everything the node does will update as you write code.

Implementation

@visibleForOverriding
void reassemble() {}