SecurityVerificationResponse.fromJson constructor

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

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