Results 3 comments of Saxorman

Hi! I took this kind of solution to this problem: ``` bool successLoad = false; return CachedNetworkImage( imageUrl: url, progressIndicatorBuilder: (context, url, downloadProgress) { if (!successLoad) { successLoad = downloadProgress.downloaded...

Hello! In fact, it would be quite convenient. I got into it myself. For example: ``` @RestApi() abstract class ItemService { factory ItemService(Dio dio, {String baseUrl}) = _ItemService; // near...

Hello! I have the same warning during code generation. ```dart @JsonSerializable(genericArgumentFactories: true, createToJson: false) class InheritWrapperField { final T value; final bool inherit; InheritWrapperField(this.value, this.inherit); factory InheritWrapperField.fromJson( Map json, T...