-
We are using customized JSON Encoder to serialize NaN. Now we moving to dart2 from dart1 and I faced this issue:
1) encoder = new JsonEncoder(_encoder);
2) static dynamic _encoder(value) {
…
-
Hi,
Seems `dust` is not working well with null safety and the newest dart.
```sh
dart run bin/dust.dart example/crash_on_bad.dart
Unhandled exception:
Observatory did not start on 7575
outp…
-
-
I think this is a big enough hurdle in Dart2 (especially from those used to Dart1) to prioritize. I've had to explain this separately to about 20 people this week, and not having anything good to poin…
-
This is one for discussion, I think.
While migrating to Dart2.0 (2.0.0-dev.67.0), we faced following issue:
DDC adds `` to page, which defines global functions `require` and `define`.
That fact …
-
Related issue was https://github.com/dart-lang/mockito/issues/152.
In Dart2, it is _impossible_ to implement generic methods (correctly) with Mockito.
Specifically:
1. It isn't possible to ma…
-
你好,想问下你们这套服务部署在什么系统上?可以部署在centos上吗?
-
Consider this code:
```dart
class A {
const A(this.x);
final dynamic x;
}
class B {
B({ this.a: const A(null) });
A a;
}
void main() {
new B();
}
```
Now we want to m…
Hixie updated
6 years ago
-
-
Hi,
Just wondering if there are any plans on updating this package to support Dart version 2?
We are developing a Flutter app and are making use of the sqflite package, however testing is compli…