V2TimCustomElem.fromJson constructor

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

Implementation

V2TimCustomElem.fromJson(Map<String, dynamic> json) {
  data = json['data'];
  desc = json['desc'];
  extension = json['extension'];
  if (json['nextElem'] != null) {
    nextElem = Map<String, dynamic>.from(json['nextElem']);
  }
}