ListQueryExecutionsOutput.fromJson constructor
Implementation
factory ListQueryExecutionsOutput.fromJson(Map<String, dynamic> json) {
return ListQueryExecutionsOutput(
nextToken: json['NextToken'] as String?,
queryExecutionIds: (json['QueryExecutionIds'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}