notify method
- String name,
- dynamic value,
- Function from,
- MapControllerChangeType type
Notify to the changefeed
Implementation
void notify(
String name, dynamic value, Function from, MapControllerChangeType type) {
final change = StatefulMapControllerStateChange(
name: name, value: value, from: from, type: type);
if (verbose) {
print("Map state change: $change");
}
_subject.add(change);
}