isMemberInGroupMuteList method
- String groupId
Implementation
Future<bool> isMemberInGroupMuteList(String groupId) async {
Map req = {'groupId': groupId};
Map result = await _channel.invokeMethod(
ChatMethodKeys.isMemberInGroupMuteList, req);
try {
EMError.hasErrorFromResult(result);
return result.boolValue(ChatMethodKeys.isMemberInGroupMuteList);
} on EMError catch (e) {
throw e;
}
}