handleNotification method

void handleNotification([
  1. dynamic value
])

Handles notifications received by the subscriber.

This method is invoked when the subscribed controller notifies about a change, passing an optional value. Implement this method to define custom handling of notifications in your subscriber class.

Implementation

void handleNotification([dynamic value]) {}