郭翰林
郭翰林
1、适配Dart空安全代码生成不对的问题 2、删除Dart生成冗余代码 3、修改Dart字段注释不对的问题 4、适配required-props属性生成代码@required不对的问题 1、The problem of incorrect generation of Dart empty security code 2、 Delete Dart to generate redundant code 3、Modify the problem of incorrect Dart field annotations 4、The...
The right one should be like this: ``` class RecommendResult { RecommendResult({ this.pageSize, this.pageNo, this.totalCount, this.resultData, this.searchAfter,}); RecommendResult.fromJson(dynamic json) { pageSize = json['pageSize']; pageNo = json['pageNo']; totalCount = json['totalCount']; if...