Alexander Zub

Results 24 issues of Alexander Zub

``` Future _validatePhone(String? value) async { if (value == null) return false; try { final plugin = PhoneNumberUtil(); if (!value.startsWith("+")) { value = "+1$value"; } final phoneNumber = await plugin.parse(value,...

awaiting author response

**Describe the bug** This test fails. **Test** ```dart class Counter { Counter(this.count); final int count; } void main() { final provider1 = Provider((_) => Counter(1)); final provider2 = Provider((ref) =>...

bug

preResolved A(Module) depends on B(preResolved singleton, non-module). A is initialized earlier, than B.

I have documented the issue in my [stackoverflow](https://stackoverflow.com/questions/65193732/is-there-a-way-to-pass-factory-params) question. I think, there should be the way to pass factory parameters.

I've tried to test through "SDK Integration" in Appsflyer Console. For some reason, request to server was blocked . I needed to add 'conversions.appsflyer.com' to cleartext exceptions. Probably you mistyped...

```python class memoized_property(object): """A read-only @property that is only evaluated once.""" def __init__(self, fget, doc=None): self.fget = fget self.__doc__ = doc or fget.__doc__ self.__name__ = fget.__name__ def __get__(self, obj, cls):...

In that case it works only if fromJson is an arrow function: ```dart import 'package:freezed_annotation/freezed_annotation.dart'; part 'data.freezed.dart'; part 'data.g.dart'; @Freezed(genericArgumentFactories: true) class Data with _$Data { const factory Data({ required...

bug

This doesn't work: ```dart import 'package:freezed_annotation/freezed_annotation.dart'; part 'data.freezed.dart'; part 'data.g.dart'; @freezed @JsonSerializable(genericArgumentFactories: true, createToJson: false) class Data with _$Data { const factory Data({ required T data, }) = _Data; factory...

bug

If I reexport package A from package B, autoversioning considers breaking change in A to be just "version upgrade" for B. Is there a way to specify reexports in melos.yaml?

feature request

Once REPL encounters an error, it stops interpreting valid statements, since hadError is never set to false.