Cat-sushi
Cat-sushi
For the same reason of prohibiting to override `toString()`, it is very confusing. ```dart inline class Id { final int value; Id(this.value); bool get isEven => value.isOdd; // lying. Should...
The API document of `hasNext` says, > Can be used before using [next](https://pub.dev/documentation/async/latest/async/StreamQueue/next.html) to avoid getting an error in the future returned by next in the case where there are...
`"abc\"def\""` is converted to `"abc"def""`, but `'abc"def"'` is correct.
`[1, 2, 3]` can't be converted.