tell method

  1. @override
Future tell(
  1. dynamic m, {
  2. LinkFractal? link,
})
override

Implementation

@override
Future tell(m, {link}) async {
  switch (m) {
    case InteractionFractal f:
      final map = f.m.writtenMap;
      if (source case EventsCtrl ctrl) {
        return await ctrl.put(map)
          ..synch();
      }
      break;
      _:
      super.tell(m);
  }
  ;
}