You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
780 B
22 lines
780 B
3 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'top_detail_model.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
TopDetailModel _$TopDetailModelFromJson(Map<String, dynamic> json) =>
|
||
|
TopDetailModel(
|
||
|
id: json['id'] as int,
|
||
|
title: json['title'] as String,
|
||
|
content: json['content'] as String,
|
||
|
isPublic: json['isPublic'] as int,
|
||
|
isRating: json['isRating'] as int,
|
||
|
dynamicNum: json['dynamicNum'] as int,
|
||
|
commentNum: json['commentNum'] as int,
|
||
|
imgList: (json['imgList'] as List<dynamic>)
|
||
|
.map((e) => ImgModel.fromJson(e as Map<String, dynamic>))
|
||
|
.toList(),
|
||
|
);
|