dco_decode_list_String method

  1. @protected
List<String> dco_decode_list_String(
  1. dynamic raw
)
override

Implementation

@protected
List<String> dco_decode_list_String(dynamic raw) {
  // Codec=Dco (DartCObject based), see doc to use other codecs
  return (raw as List<dynamic>).map(dco_decode_String).toList();
}