// GENERATED CODE - DO NOT MODIFY BY HAND part of 'home_announce_model.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** HomeAnnounceModel _$HomeAnnounceModelFromJson(Map json) => HomeAnnounceModel( id: json['id'] as int, title: json['title'] as String, content: json['content'] as String, imgList: (json['imgList'] as List) .map((e) => ImgModel.fromJson(e as Map)) .toList(), createDate: json['createDate'] as String, );