updateCommunityChannelNotice method

Future<Map> updateCommunityChannelNotice({
  1. required String channelNotice,
  2. required String channelID,
  3. required String communityID,
})

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);
}