onInvitationAcceptedFromGroup method
Implementation
@protected
void onInvitationAcceptedFromGroup(
String groupId, String invitee, String? reason) {
for (var observer in List<ChatUIKitObserverBase>.of(observers)) {
if (observer is GroupObserver) {
observer.onInvitationAcceptedFromGroup(groupId, invitee, reason);
}
}
}