getGroup

abstract suspend fun getGroup(groupId: String): Group

Retrieves a specific group associated with the current user ID asynchronously.

Return

The retrieved group associated with the current user ID.

Parameters

groupId

The ID of the group to retrieve.


abstract fun getGroup(groupId: String, completionCallback: CompletionCallback<Group>)

Retrieves a specific group associated with current user id asynchronously with a completion callback.

Parameters

groupId

The ID of the group to retrieve.

completionCallback

The callback function to be invoked when the group is retrieved.