onAttributionReportingReportSent property

Stream<AttributionReportingReportSentEvent> get onAttributionReportingReportSent

Implementation

Stream<AttributionReportingReportSentEvent>
get onAttributionReportingReportSent => _client.onEvent
    .where((event) => event.name == 'Storage.attributionReportingReportSent')
    .map(
      (event) =>
          AttributionReportingReportSentEvent.fromJson(event.parameters),
    );