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