listOnSearch static method

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

For Android: Publish this BUO with Google app indexing so that the contents will be available with google search For iOS: List items on Spotlight

Implementation

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