onActionWillExecute property

Implementation

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