SoftDeleteTestCase.fromJson constructor

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

Implementation

factory SoftDeleteTestCase.fromJson(Map<String, dynamic> json) {
  return SoftDeleteTestCase(tests: json['tests'], results: json['results']);
}