cst_encode_list_Uuid method

  1. @protected
JSAny cst_encode_list_Uuid(
  1. List<UuidValue> raw
)

Implementation

@protected
JSAny cst_encode_list_Uuid(List<UuidValue> raw) {
  // Codec=Cst (C-struct based), see doc to use other codecs
  return raw.map(cst_encode_Uuid).toList().jsify()!;
}