SecurityDto.fromJson constructor

SecurityDto.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}