| OLD | NEW |
| 1 >>> (indent 4) | 1 >>> (indent 4) |
| 2 return new Container( | 2 return new Container( |
| 3 key: 'ChatApp', | 3 key: 'ChatApp', |
| 4 children: [ | 4 children: [ |
| 5 new Container( | 5 new Container( |
| 6 key: 'Content', | 6 key: 'Content', |
| 7 style: _content_style, | 7 style: _content_style, |
| 8 children: appChildren)]); | 8 children: appChildren)]); |
| 9 <<< | 9 <<< |
| 10 return new Container( | 10 return new Container(key: 'ChatApp', children: [ |
| 11 key: 'ChatApp', | 11 new Container( |
| 12 children: [ | 12 key: 'Content', style: _content_style, children: appChildren) |
| 13 new Container( | 13 ]); |
| 14 key: 'Content', style: _content_style, children: appChildren) | |
| 15 ]); | |
| 16 >>> (indent 10) | 14 >>> (indent 10) |
| 17 return new Container( | 15 return new Container( |
| 18 key: 'ChatApp', | 16 key: 'ChatApp', |
| 19 children: [ | 17 children: [ |
| 20 new Container( | 18 new Container( |
| 21 key: 'Content', | 19 key: 'Content', |
| 22 style: _content_style, | 20 style: _content_style, |
| 23 children: appChildren)]); | 21 children: appChildren)]); |
| 24 <<< | 22 <<< |
| 25 return new Container( | 23 return new Container(key: 'ChatApp', children: [ |
| 26 key: 'ChatApp', | 24 new Container( |
| 27 children: [ | 25 key: 'Content', style: _content_style, children: appChildren) |
| 28 new Container( | 26 ]); |
| 29 key: 'Content', | |
| 30 style: _content_style, | |
| 31 children: appChildren) | |
| 32 ]); | |
| OLD | NEW |