in KMP is it possible to have variant of specific ...
# multiplatform
s
in KMP is it possible to have variant of specific class for example in project i want to variant of file KString one from okio and other one from kotlinx-io Variant A Okio:
Copy code
Class KString: StringInterface {
  fun a(){implementFromOkio()}
}
Variant B kotlinx-io:
Copy code
Class KString: StringInterface {
  fun a(){ implementFromKotlinxIO() }
}
is it possible? I want to release a library which can be used with okio or kotlinx-io