TestIDError.fromJson constructor
Implementation
TestIDError.fromJson(Map<String, dynamic> json) {
testID = json['testID'];
error = json['error'];
stackTrace = json['stackTrace'];
isFailure = json['isFailure'];
type = json['type'];
time = json['time'];
}