point<E extends EventFractal> method

Future<EventFractal> point<E extends EventFractal>(
  1. MP m
)

Implementation

Future<EventFractal> point<E extends EventFractal>(MP m) async {
  final evf = EventFractal.controller.put({
    'to': this,
    ...m,
  });
  return await evf;
}