onFailResolvingUrl property

Stream<FailResolveData> get onFailResolvingUrl

Fires when resolving the deferred link fails.

Implementation

Stream<FailResolveData> get onFailResolvingUrl =>
    _rawEvents.where((m) => m['type'] == 'onDidFailResolvingURL').map((m) {
      debugPrint('[TappSdk.onFailResolvingUrl] payload: $m');
      return FailResolveData.fromMap(m);
    });