UnreservedTemplateValue.fromJson constructor

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

Implementation

factory UnreservedTemplateValue.fromJson(Map<String, dynamic> json) =>
    UnreservedTemplateValue(
      globallyUniqueIdentifier:
          TLVModel.fromJson(json["globallyUniqueIdentifier"]),
      contextSpecificData: List<TLVModel>.from(
          json["contextSpecificData"].map((x) => TLVModel.fromJson(x))),
    );