getConsentCategories static method

Future<List> getConsentCategories()

Retrieves the current ConsentCategories for which the user is consented

Future<List<dynamic>> A List of ConsentCategories

Implementation

static Future<List<dynamic>> getConsentCategories() async {
  return await _channel.invokeMethod('getConsentCategories');
}