subscribeOnConsentLost method
Future<void>
subscribeOnConsentLost(
- Future handler(
- int consentType
)
)
override
Implementation
@override
Future<void> subscribeOnConsentLost(Future<dynamic> handler(int consentType))async {
print('Subscribe on consent lost Android implementation');
consentLostHandler(dynamic event) {
handler(event);
}
consentLostErrorHandler(dynamic error) => print('Received error: ${error.message}');
_eventChannel.receiveBroadcastStream().listen(consentLostHandler, onError: consentLostErrorHandler);
await _channel.invokeMethod('subscribeOnConsentLost', {'consentType':oneConsentTypeCollectData});
}