StartQueryResponse.fromJson constructor

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

Implementation

factory StartQueryResponse.fromJson(Map<String, dynamic> json) {
  return StartQueryResponse(
    queryId: json['queryId'] as String?,
  );
}