setInboxConsentState method

  1. @override
Future<bool> setInboxConsentState(
  1. String inboxId,
  2. String state
)
override

Implementation

@override
Future<bool> setInboxConsentState(String inboxId, String state) async {
  await _ensureInitialized();
  return rust_consent.setInboxConsentState(inboxId: inboxId, state: state);
}