notify method

  1. @override
dynamic notify(
  1. T fractal
)
override

Implementation

@override
notify(T fractal) {
  if (fractal.state == StateF.removed) {
    cleanUp();
  }
  super.notify(fractal);
}