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