Response.fromJson constructor

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

Implementation

factory Response.fromJson(Map<String, dynamic> json) => Response(
      serviceResultCode: json["serviceResultCode"],
      serviceResultLog: json["serviceResultLog"],
      serviceTime: json["serviceTime"],
      serviceFacialAuthenticationResult:
          json["serviceFacialAuthenticationResult"],
      serviceFacialAuthenticationHash:
          json["serviceFacialAuthenticationHash"],
      serviceFacialSimilarityResult:
          json["serviceFacialSimilarityResult"].toDouble(),
      serviceTransactionId: json["serviceTransactionId"],
    );