onGroupNoticeUpdated property

void Function(ZIM zim, String groupAvatarUrl, ZIMGroupOperatedInfo operatedInfo, String groupID)? onGroupNoticeUpdated
getter/setter pair

Event callback when the group notice changes.

Available since: 2.0.0 and above. Description: Group notice change notification callback. Use cases: When the group notice changes, you need to synchronize the latest notice content. Triggered when: Triggered when the group notice changes. Related APIs: updateGroupNotice, which updates the group notice.

  • zim ZIM instance.
  • groupNotice Group notice.
  • operatedInfo Group operation information.
  • groupID Group ID.

Implementation

static void Function(
  ZIM zim,
  String groupNotice,
  ZIMGroupOperatedInfo operatedInfo,
  String groupID,
)?
onGroupNoticeUpdated;