Term.fromJson constructor

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

Implementation

factory Term.fromJson(Map<String, dynamic> json) => Term(
      offset: json["offset"],
      value: json["value"],
    );