Tests.fromJson constructor

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

Implementation

Tests.fromJson(Map<String, dynamic> json) {
  test = json['test'] != null ? new Test.fromJson(json['test']) : null;
  type = json['type'];
  time = json['time'];
}