onActionExecuted property

Implementation

static Stream<NotificareActionExecutedEvent> get onActionExecuted {
  return _getEventStream('action_executed').map((result) {
    final Map<dynamic, dynamic> json = result;
    return NotificareActionExecutedEvent.fromJson(json.cast());
  });
}