hasPurpose method

  1. @override
Future<bool> hasPurpose(
  1. String id, {
  2. bool defaultReturn = true,
})
override

Checks if there is consent for the specified purpose ID.

Implementation

@override
Future<bool> hasPurpose(String id, {bool defaultReturn = true}) async {
  final result = await methodChannel.invokeMethod<bool>(
      'hasPurpose', {'id': id, 'defaultReturn': defaultReturn});
  return result ?? false;
}