fromJson static method
Implementation
static Future<ScpResponseResetToDefault> fromJson(var inputJson, String password) async {
if (!InputValidation.validateJsonResponse(inputJson)) {
return ScpResponseResetToDefault();
}
String response = inputJson['response'];
String hmac = inputJson['hmac'];
// Check hmac before additional processing
if (await ScpCrypto().verifyHMAC(response, hmac, password)) {
var decodedPayload = base64Decode(response);
var decodedJson = json.decode(utf8.decode(decodedPayload));
if (decodedJson['type'] == type) {
ScpResponseResetToDefault restartResponse = ScpResponseResetToDefault(
deviceId: decodedJson['deviceId'],
result: decodedJson['result'],
);
return restartResponse;
}
}
return ScpResponseResetToDefault();
}