1. @override
void onCreated()

Callback used to notify a node that it was created. This is called after a node is deserialized as well.

Source

@override
void onCreated() {
  if (onCreatedCallback != null) {
    onCreatedCallback();
  }
}