TseBaseDto.fromJson constructor
Implementation
factory TseBaseDto.fromJson(Map<String, dynamic> json) {
switch (decodeTseTypeDto(TseTypeDtoEnumMap, json["type"] as String)) {
case TseTypeDto.tse:
return TseDto.fromJson(json);
case TseTypeDto.rksv:
return RksvDto.fromJson(json);
case TseTypeDto.securityInformation:
return SecurityInformationDto.fromJson(json);
case TseTypeDto.boiTva:
return BoiTvaDto.fromJson(json);
}
}