onInboxUpdated property
Provides a stream of events for when the inbox is updated.
Returns a Stream of MessageCenterUpdatedEvent objects.
Implementation
Stream<MessageCenterUpdatedEvent> get onInboxUpdated {
return _module
.getEventStream("com.airship.flutter/event/message_center_updated")
.map((dynamic value) => MessageCenterUpdatedEvent.fromJson(value));
}