blob: a4f796085c392b3a3283016142b0b9d7540b4cc2 [file] [log] [blame]
>>>
var serverDuration = new Duration(
microseconds: response.requestProcessingTimeUsec.toInt())
.inMilliseconds.toString();
<<<
### TODO(rnystrom): I think it would look better to split the method chain.
var serverDuration =
new Duration(
microseconds: response.requestProcessingTimeUsec.toInt(),
).inMilliseconds.toString();
>>> (indent 8)
var serverDuration = new Duration(
microseconds: response.requestProcessingTimeUsec.toInt())
.inMilliseconds.toString();
<<<
### TODO(rnystrom): I think it would look better to split the method chain.
var serverDuration =
new Duration(
microseconds: response.requestProcessingTimeUsec.toInt(),
).inMilliseconds.toString();