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