dco_decode_list_my_value method
Implementation
@protected
List<MyValue> dco_decode_list_my_value(dynamic raw) {
// Codec=Dco (DartCObject based), see doc to use other codecs
return (raw as List<dynamic>).map(dco_decode_my_value).toList();
}
@protected
List<MyValue> dco_decode_list_my_value(dynamic raw) {
// Codec=Dco (DartCObject based), see doc to use other codecs
return (raw as List<dynamic>).map(dco_decode_my_value).toList();
}