getJetpack

abstract fun getJetpack(id: String): Flow<Jetpack>

Retrieves a specific jetpack by its ID.

Return

A Flow emitting the Jetpack object.

Parameters

id

The unique identifier of the jetpack.

Samples

return localDataSource.getJetpack(id).map { it.toJetpack() }