CborList.of constructor

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

Create a new CborList from values.

The resulting list is growable.

Implementation

factory CborList.of(Iterable<CborValue> elements,
    {List<int> tags, CborLengthType type}) = _CborListImpl.of;