getUCPurposeTopicConsent static method

Future<int> getUCPurposeTopicConsent(
  1. String topicID,
  2. String purposeID
)

Implementation

static Future<int> getUCPurposeTopicConsent(
    String topicID, String purposeID) async {
  final int status = await _channel.invokeMethod('getUCPurposeTopicConsent',
      {'forTopic': topicID, 'forPurpose': purposeID});
  return status;
}