TLVModel constructor

TLVModel({
  1. String? tag,
  2. String? length,
  3. String? value,
})

Implementation

TLVModel({
  this.tag,
  this.length,
  this.value,
});