TLVModel.fromJson constructor

TLVModel.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TLVModel.fromJson(Map<String, dynamic> json) => TLVModel(
      tag: json["tag"],
      length: json["lenght"],
      value: json["value"],
    );