modifyConsent method Null safety

Future<String> modifyConsent(
  1. String source,
  2. List<TikiSdkDestination> destinations
)

Modify consent for source.

Ownership must be granted before modifying consent. Consent is applied on an explicit only basis. Meaning all requests will be denied by default unless the destination is explicitly defined in destinations.

Implementation

Future<String> modifyConsent(
    String source, List<TikiSdkDestination> destinations) {
  throw UnimplementedError();
}