Chromium Code Reviews| Index: lib/core/duration.dart |
| diff --git a/lib/core/duration.dart b/lib/core/duration.dart |
| index 91c5959633bf2806469128a6d2553cde80b9ded2..c3bf66b37cffda10e391e1e54276fdcc12b273c8 100644 |
| --- a/lib/core/duration.dart |
| +++ b/lib/core/duration.dart |
| @@ -16,8 +16,8 @@ interface Duration extends Comparable default DurationImplementation { |
| * All individual parts are allowed to be negative. |
| * All arguments are by default 0. |
| */ |
| - const Duration([int days, int hours, int minutes, int seconds, |
| - int milliseconds]); |
| + const Duration({int days, int hours, int minutes, int seconds, |
| + int milliseconds}); |
|
bakster
2012/09/13 09:00:01
It would be great to have the default values liste
|
| /** |
| * Returns this [Duration] in days. Incomplete days are discarded. |