is there a way to quiet the compiler if you are creating multiplatform classes, but dont want to implement it on one platform (for instance you want android/ios, but not a js implentation)
c
Casey Brooks
10/29/2020, 6:41 PM
I usually create the default implementation with a bunch of
TODO()
or
throw NotImplementedError()
. Alternatively, break the module down into multiple “core” modules that better set up the intended usage (for example, a platform-agnostic “core” module, a “mobile” module for android/ios which depends on “core”, etc)