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