listenForConsentChanges static method

Stream listenForConsentChanges(
  1. List<String> categoryIds
)

Starts listening for consent changes for the category IDs inputted

Implementation

static Stream<dynamic> listenForConsentChanges(List<String> categoryIds) {
  return _eventChannel.receiveBroadcastStream({'categoryIds': categoryIds});
}