SDKsFlutterEnterprise
Retrieve a group call room
Use the Flutter SDK to retrieve an active call room by group ID.
The parameter is a group ID, not a custom roomID:
final room = await OpenIM.iMManager.signalingManager
.signalingGetRoomByGroupID(groupID: groupID);
if (room.roomID?.isNotEmpty == true) {
renderParticipants(room.participant ?? const []);
}The Future returns a RoomCallingInfo snapshot. If no group call is active, treat an error or empty room as "no restorable call" and do not continue using stale credentials.
Was this page helpful?