CborList constructor

CborList(
  1. List<CborValue> items, {
  2. List<int> tags,
  3. CborLengthType type,
})

Create a new CborList from a view of the given list.

Implementation

factory CborList(List<CborValue> items,
    {List<int> tags, CborLengthType type}) = _CborListImpl;