asList property

TlvList? get asList

Implementation

TlvList? get asList {
  if (value == null) return null;
  if (value is TlvList) return value! as TlvList;
  throw StateError("value is not a tlv list. tag=${tagString(tag)}");
}