RespList<T>.fromJson constructor
Implementation
RespList.fromJson(Map<String, dynamic> json) {
superFromJson(json);
if (this.isDataVali()) {
this.list = List<T>.from(json.data.map((x) => dataFromJson(x)));
} else {
this.list = [];
}
}