Commit e81e06a6 authored by Adam Barth's avatar Adam Barth Committed by GitHub

Fix typo in TableRow.toString (#6354)

Fixes #6351
parent e9b041f2
......@@ -52,7 +52,7 @@ class TableRow {
result.write('$key, ');
if (decoration != null)
result.write('$decoration, ');
if (children != null) {
if (children == null) {
result.write('child list is null');
} else if (children.length == 0) {
result.write('no children');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment