SecurityVerificationResponse.fromJson constructor
Implementation
factory SecurityVerificationResponse.fromJson(Map<String, dynamic> json) {
return SecurityVerificationResponse(
valid: json['valid'] as bool,
securityLevel: json['securityLevel'] as int,
multiLayerFailOver: json['multi_layer_failover'] as bool,
);
}