Flutter入门实践

001.4 flutter json model转化【入门】

2020-03-13  本文已影响0人  码农二哥

首次步骤

import 'package:json_annotation/json_annotation.dart';
part 'CommonModel1.g.dart';

@JsonSerializable()
class CommonModel1 {
  final String sourceUrl;
  final String targetUrl;

  CommonModel1({this.sourceUrl, this.targetUrl});
  factory CommonModel1.fromJson(Map<String, dynamic> json) => _$CommonModel1FromJson(json);
  Map<String, dynamic> toJson() => _$CommonModel1ToJson(this);
}

修改步骤

参考

上一篇下一篇

猜你喜欢

热点阅读