Jayden
02/01/2022, 10:38 PMval
?
1️⃣
interface A {
val flowOfSomething: Flow<Object>
fun flowOfAnotherThing(parameter: Parameter) : Flow<Object> // This makes sense as a function as it needs a parameter.
}
2️⃣
interface A {
fun flowOfSomething(): Flow<Object>
fun flowOfAnotherThing(parameter: Parameter) : Flow<Object>
}
Thoughts?ephemient
02/01/2022, 10:41 PMmichaelv
02/01/2022, 10:51 PMmichaelv
02/01/2022, 10:52 PMJacob
02/02/2022, 3:26 PMJacob
02/02/2022, 3:26 PM