TLV constructor

TLV({
  1. required int type,
  2. required int length,
  3. required Uint8List value,
})

Implementation

TLV({
  required this.type,
  required this.length,
  required this.value,
});