dco_decode_web_probe method
- dynamic raw
Implementation
@protected
WebProbe dco_decode_web_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 WebProbe();
}