SecurityDto.fromJson constructor
Implementation
factory SecurityDto.fromJson(Map<String, dynamic> json) {
return SecurityDto(
tse: json["tse"] != null
? TseBaseDto.fromJson(json["tse"] as Map<String, dynamic>)
: null,
tseFailure: json["tseFailure"] as bool,
tseRequired: json["tseRequired"] as bool,
);
}