updateCommunityChannelNotice method
Implementation
Future<Map<dynamic, dynamic>> updateCommunityChannelNotice(
{required String channelNotice,
required String channelID,
required String communityID}) async {
final result = await promiseToFuture(ZIM
.getInstance()!
.updateCommunityChannelNotice(
channelNotice, channelID, communityID))
.catchError(_handleError);
return _jsObjectToMap(result);
}