getInboxConsentState method

  1. @override
Future<String> getInboxConsentState(
  1. String inboxId
)
override

Implementation

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