checkForUnsentReports method

Future<bool> checkForUnsentReports()

Checks a device for any fatal or non-fatal crash reports that haven't yet been sent to Crashlytics.

If automatic data collection is enabled, then reports are uploaded automatically and this always returns false. If automatic data collection is disabled, this method can be used to check whether the user opts-in to send crash reports from their device.

Implementation

Future<bool> checkForUnsentReports() {
  return _delegate.checkForUnsentReports();
}