TestSection.fromJson constructor

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

Implementation

factory TestSection.fromJson(Map<String, dynamic> json) => TestSection(
      depth: json['depth'],
      description: json['description'],
      displayOrder: json['display_order'],
      id: json['id'],
      name: json['name'],
      parentId: json['parent_id'],
      suiteId: json['suite_id'],
    );