jellynoone
jellynoone
I have a similar use case, I'd like to handle unknown type or be able to specify an on unknown type value. Something along the lines: ```dart @JsonEnum(onUnknownEnumValue: MyFormType.unknown) enum...
After further digging I saw I missed the `JsonKey.unknownEnumValue` property. Ignore my previous comment unless the recommended improvements make sense. I do think unifying enum conversion would be a nice...
I just wanted to add here that an added benefit with being able to force a client to extend your class rather than implement it is that you are also...
@letsar Did you perhaps have a chance to look at this?
I took a look at this and it seems the bug is at: https://github.com/google/arb-editor/blob/29a69b108a91a1bc90c488e0cdba341f9180df97/src/diagnose.ts#L82-L98 The `entry.key` is an object not a string literal so the `===` fails. Changing `m.key ===...
Just bumped into this. I'm trying to perform a transactional write, where two documents are created as a result and one of them is validated against another. Is there any...
Greetings, @Hixie. If you call `process.stdin.flush()` and `await` the `Future`, you can catch the expected error. ```dart void main() async { try { final Process process = await Process.start('echo', []);...
From the looks of it the error is reported to the `Completer.future` in [io_sink.dart](https://github.com/dart-lang/sdk/blob/c97736d594d9038d2f590ff2a71b26f14c54024e/sdk/lib/io/io_sink.dart#L207) in `_StreamSinkImpl._completeDoneError`. So, to improve the error message we'd have to decorate the method in the...
Hi, @abhis3. I'm still experiencing this issue, although, I should add it doesn't happen all that consistantly. Here are the following specs: Device: `MacBook Pro (Retina, 13-inch, Mid 2014)` OS:...
I also took a look at: https://github.com/firebase/firebase-tools/commit/dec8a3f0b2b3fa990da86af8b8d8926f8cf3d24e and I think I noticed a few things could be improved: 1. The test for this bug is incorrect 2. The number of...