Marcelo Glasberg
Marcelo Glasberg
See: https://github.com/flutter/flutter/issues/14815
Yes, it's almost ready.
Done: https://pub.dev/packages/fast_immutable_collections/versions/2.0.0-nullsafety.1
Seems right, at first glance. The one thing you shouldn't be doing is generating collections and then turning them into immutable ones. You should create them immutable from the `Iterable`...
@knaeckeKami Won't Dart tree shake remove the unused classes anyway? So that it won't bloat the dependencies of users, at least in the compiled result?
1. Are functions guaranteed to run once and only once? Or is it at least once? In the latter case they need to be idempotent, which is a pain. If...
@dnys1 @abdallahshaban557 Do you mean idempotency would work like described here? https://stripe.com/docs/api/idempotent_requests
A question: ``` @api.anonymous() library; import 'package:celest/api.dart' as api; Future sayHello( FunctionContext context, String name, ) async { return 'Hello, $name'; } Future sayGoodbye( FunctionContext context, String name, ) async...
Ok, I understand your concerns, so I think I need to explain my needs better and give you more detail. When you discuss explicitness vs. implicitness you are basically saying...
That's really not good in this case. The user language is a cross-cutting concern, I don't want to have to deal with it explicitly. Using my https://pub.dev/packages/i18n_extension translations package you...