onAttributionReportingSourceRegistered property

Stream<AttributionReportingSourceRegisteredEvent> onAttributionReportingSourceRegistered

Implementation

Stream<AttributionReportingSourceRegisteredEvent>
    get onAttributionReportingSourceRegistered => _client.onEvent
        .where((event) =>
            event.name == 'Storage.attributionReportingSourceRegistered')
        .map((event) => AttributionReportingSourceRegisteredEvent.fromJson(
            event.parameters));