createCborCodec function

Future<CratestackCborCodec> createCborCodec()

Implementation

Future<CratestackCborCodec> createCborCodec() {
  throw UnsupportedError(
    'cratestack_cbor: no backend is available for this Dart compile '
    'target (neither dart.library.io nor dart.library.js_interop). '
    'Supported today: native (Linux x86_64 only, via a vendored '
    'flutter_rust_bridge library) and web (via a vendored wasm-bindgen '
    'build).',
  );
}