I'm looking for a unifying KMM expect API type tha...
# squarelibraries
j
I'm looking for a unifying KMM expect API type that can map to
java.io.InputStream
on Android and
NSInputStream
on iOS platform actual implementations. Looking at okio, it seems like the API for this is
Source
. Is it possible to convert a
Source
to both an
InputStream
and
NSInputStream
? I've only been able to find an API for converting an
InputStream
to a
Source
, but not the other way around.