onAttributionReportingVerboseDebugReportSent property

Stream<AttributionReportingVerboseDebugReportSentEvent> get onAttributionReportingVerboseDebugReportSent

Implementation

Stream<AttributionReportingVerboseDebugReportSentEvent>
get onAttributionReportingVerboseDebugReportSent => _client.onEvent
    .where(
      (event) =>
          event.name == 'Storage.attributionReportingVerboseDebugReportSent',
    )
    .map(
      (event) => AttributionReportingVerboseDebugReportSentEvent.fromJson(
        event.parameters,
      ),
    );