sendPendingAttributionReports method
Sends all pending Attribution Reports immediately, regardless of their scheduled report time. Returns: The number of reports that were sent.
Implementation
Future<int> sendPendingAttributionReports() async {
var result = await _client.send('Storage.sendPendingAttributionReports');
return result['numSent'] as int;
}