getConversationConsentState method

  1. @override
Future<String> getConversationConsentState(
  1. String topic
)
override

Implementation

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