SecurityInformationDto.fromJson constructor
Implementation
factory SecurityInformationDto.fromJson(Map<String, dynamic> json) {
return SecurityInformationDto(
title: json["title"] as String?,
data: (json["data"] as List<dynamic>?)
?.map((e) =>
SecurityInformationDataDto.fromJson(e as Map<String, dynamic>))
.toList(),
type: decodeTseTypeDto(TseTypeDtoEnumMap, json["type"] as String),
);
}