| Index: utils/archive/utils.dart
|
| diff --git a/utils/archive/utils.dart b/utils/archive/utils.dart
|
| index 433cd9abba0547249def3437fd1336fdadcda4f2..29987f0dfdf1a5e3f52454420170a3c2cc857f96 100644
|
| --- a/utils/archive/utils.dart
|
| +++ b/utils/archive/utils.dart
|
| @@ -30,7 +30,7 @@ SendPort _newServicePort() native "Archive_ServicePort";
|
| *
|
| * Returns a future that completes with the C extension's reply.
|
| */
|
| -Future call(int requestType, int id, [List args]) {
|
| +Future call(int requestType, [int id, List args]) {
|
| var fullArgs = [requestType, id];
|
| if (args != null) fullArgs.addAll(args);
|
| return servicePort.call(listForC(fullArgs)).transform((response) {
|
|
|