toJson method
Map<String, Object>
toJson
()
Implementation
core.Map<core.String, core.Object> toJson() {
final core.Map<core.String, core.Object> _json =
new core.Map<core.String, core.Object>();
if (columns != null) {
_json["columns"] = columns;
}
if (index != null) {
_json["index"] = index;
}
if (keySet != null) {
_json["keySet"] = (keySet).toJson();
}
if (limit != null) {
_json["limit"] = limit;
}
if (partitionToken != null) {
_json["partitionToken"] = partitionToken;
}
if (resumeToken != null) {
_json["resumeToken"] = resumeToken;
}
if (table != null) {
_json["table"] = table;
}
if (transaction != null) {
_json["transaction"] = (transaction).toJson();
}
return _json;
}