onCustomActionReceived property

Implementation

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