setExt method
设置会话扩展属性。
子区功能目前版本暂不可设置。
Implementation
Future<void> setExt(Map<String, String>? ext) async {
Map req = this._toJson();
req.putIfNotNull("ext", ext);
Map result = await _emConversationChannel.invokeMethod(
ChatMethodKeys.syncConversationExt, req);
try {
EMError.hasErrorFromResult(result);
_ext = ext;
} on EMError catch (e) {
throw e;
}
}