V2TimFaceElem.fromJson constructor

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

Implementation

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