onMount method

  1. @mustCallSuper
  2. @override
void onMount(
  1. Effect parent
)
override

This is called by the Effect class when the controller is attached to that effect. Controllers with children should propagate this to their children.

Implementation

@mustCallSuper
@override
void onMount(Effect parent) {
  child.onMount(parent);
}