Moshe Yamini

Results 12 issues of Moshe Yamini

**Is your feature request related to a problem? Please describe.** Right now to make a consistent way to convert DateTime to String we need to use our code. For instance,...

**To Reproduce** ``` import 'package:json_annotation/json_annotation.dart'; part 'api_response.g.dart'; @JsonSerializable(genericArgumentFactories: true) class SomeModelWithGenericType { final T data; SomeModelWithGenericType( {required this.data, }); factory SomeModelWithGenericType.fromJson(Map json, T Function(Object? json) fromJsonT) => _$SomeModelWithGenericTypeFromJson(json, fromJsonT); Map...