Olzhas Suleimen
Olzhas Suleimen
Something like that? I don't like global variables. You can store tamplate in variable `var template = environment.fromString('...')`, without loader. ```dart import 'package:flutter/material.dart'; import 'package:jinja/jinja.dart'; import 'package:provider/provider.dart'; const source1 =...
why not do like `async`, allow `const` modifier, which mean that all arguments and return type is const: ```dart int get zero const { return 0; } int add(int a,...
can we extend classes with analyzer plugin? can we use `external` and `patch` like patches in sdk libraries for extending classes? plugins for CFE?
```dart var items = @fixedLength [1, 2, 3]; ```
maybe put `?` after or before keys: ```dart return switch (json) { case { "type": "location", "latlon": [lat as num, lon as num], "name"?: name as String?, "visits"?: visits as...
Can this acceptable to void argument for futures and streams callbacks? ```dart void callback() { ...; } Stream().listen(() { ...; }); Stream().listen(callback); Future().then(() { ...; }); Future().then(callback); ```
Also #1590.
Is possible to pass arguments from go app to dart main function?
Not only dependenies from pub.dev, but also git dependencies with certain commits. Currently, I am doing this manually, and it's not the first time. I'm not sure where this feature...
Do current build stack and web compilers migrate to this? I love to see something like [zig build system](https://ziglang.org/learn/build-system/). Typed. No `yaml` files.