registerView static method

void registerView({
  1. required BranchUniversalObject buo,
})

Mark the content referred by this object as viewed. This increment the view count of the contents referred by this object.

Implementation

static void registerView({required BranchUniversalObject buo}) {
  return FlutterBranchSdkPlatform.instance.registerView(buo: buo);
}