Topic preferences
import { BatchProfile } from '@batch.com/react-native-plugin';
BatchProfile.editor()
.setTopicPreferences([("technology", "finance"]) // Null to erase.
// Alternatively, partially update them with:
.addToTopicPreferences(["investing"])
.removeFromTopicPreferences(["travel"])
.save();Last updated

