removeFromSearch static method

Future<bool> removeFromSearch({
  1. required BranchUniversalObject buo,
  2. BranchLinkProperties? linkProperties,
})

For Android: Remove the BUO from the local indexing if it is added to the local indexing already This will remove the content from Google(Firebase) and other supported Indexing services For iOS: Remove Branch Universal Object from Spotlight if privately indexed

Implementation

static Future<bool> removeFromSearch(
    {required BranchUniversalObject buo,
    BranchLinkProperties? linkProperties}) async {
  return FlutterBranchSdkPlatform.instance
      .removeFromSearch(buo: buo, linkProperties: linkProperties);
}