Ai.fromJson constructor

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

Implementation

Ai.fromJson(Map<String, dynamic> json) {
  query = json['query'];
  semantic = json['semantic'] != null
      ? new Semantic.fromJson(json['semantic'])
      : null;
  status =
  json['status'] != null ? new Status.fromJson(json['status']) : null;
}