setInboxConsentState method
Implementation
@override
Future<bool> setInboxConsentState(String inboxId, String state) async {
final bool result = await methodChannel.invokeMethod('setInboxConsentState', {
'inboxId': inboxId,
'state': state,
});
return result;
}