dco_decode_native_probe method
- dynamic raw
Implementation
@protected
NativeProbe dco_decode_native_probe(dynamic raw) {
// Codec=Dco (DartCObject based), see doc to use other codecs
final arr = raw as List<dynamic>;
if (arr.isNotEmpty)
throw Exception('unexpected arr length: expect 0 but see ${arr.length}');
return NativeProbe();
}