blob: 0dcecde985a7433da00df6e7a097f3af7e735ee3 [file] [log] [blame]
>>>
void main() {
model..account = (new Account()
..accountId = new Int64(111)
..tags = (new Account_Tags()..accountHotlist.add(new Hotlist()..hotlistId = new Int64(10))));
}
<<< 3.7
void main() {
model
..account =
(new Account()
..accountId = new Int64(111)
..tags =
(new Account_Tags()
..accountHotlist.add(
new Hotlist()..hotlistId = new Int64(10),
)));
}
<<< 3.8
void main() {
model
..account = (new Account()
..accountId = new Int64(111)
..tags = (new Account_Tags()
..accountHotlist.add(new Hotlist()..hotlistId = new Int64(10))));
}
>>> (indent 4)
main() {
receiver
..formattedTotal = _total == 0
? ""
: _chartType == "PieChart"
? _formatter.formatAsPercent(item.value / _total, fractionDigits: 1)
: _formatter.formatValue(item.value, item.valueType);
}
<<< 3.7
main() {
receiver
..formattedTotal =
_total == 0
? ""
: _chartType == "PieChart"
? _formatter.formatAsPercent(
item.value / _total,
fractionDigits: 1,
)
: _formatter.formatValue(item.value, item.valueType);
}
<<< 3.8
main() {
receiver
..formattedTotal = _total == 0
? ""
: _chartType == "PieChart"
? _formatter.formatAsPercent(item.value / _total, fractionDigits: 1)
: _formatter.formatValue(item.value, item.valueType);
}
>>> (indent 6)
main() {
receiver
..formattedTotal = _total == 0
? ""
: _chartType == "PieChart"
? _formatter.formatAsPercent(item.value / _total, fractionDigits: 1)
: _formatter.formatValue(item.value, item.valueType);
}
<<< 3.7
main() {
receiver
..formattedTotal =
_total == 0
? ""
: _chartType == "PieChart"
? _formatter.formatAsPercent(
item.value / _total,
fractionDigits: 1,
)
: _formatter.formatValue(item.value, item.valueType);
}
<<< 3.8
main() {
receiver
..formattedTotal = _total == 0
? ""
: _chartType == "PieChart"
? _formatter.formatAsPercent(
item.value / _total,
fractionDigits: 1,
)
: _formatter.formatValue(item.value, item.valueType);
}