我的 common 模块中有以下期望的课程:
internal expect class CategoryLocalSource() {
fun getCategories(): Flow<List<Category>>
fun cacheCategoryList(): Flow<List<Category>>
}
我知道我无法向{strong> iOS 公开suspend
函数和Flow
,是否有解决方案以某种方式使用流?除了定义 expand Stream
类之外,其实际实现是在 platform模块中定义的?