TestIDError.fromJson constructor

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

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'];
}