CborCustomLengthListValue<T>.fixedLength constructor

CborCustomLengthListValue<T>.fixedLength(
  1. List<T> value, {
  2. int? length,
})

Constructor for creating a CborListValue instance with the provided parameters. It accepts the List of all cbor encodable value.

Implementation

CborCustomLengthListValue.fixedLength(this.value, {this.length});