AddImageModel.fromJson constructor
Implementation
factory AddImageModel.fromJson(Map<String, dynamic> json) {
return AddImageModel(
tblDocumentDetailsTOList: json['tblDocumentDetailsTOList'] != null
? (json['tblDocumentDetailsTOList'] as List)
.map((e) => ImageDetails.fromJson(e))
.toList()
: null,
);
}