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.
21 lines
690 B
21 lines
690 B
4 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'community_introduce_model.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
CommunityIontroduceModel _$CommunityIontroduceModelFromJson(
|
||
|
Map<String, dynamic> json) {
|
||
|
return CommunityIontroduceModel(
|
||
|
id: json['id'] as int,
|
||
|
name: json['name'] as String,
|
||
|
content: json['content'] as String,
|
||
|
createDate: json['createDate'] as String,
|
||
|
imgList: (json['imgList'] as List<dynamic>?)
|
||
|
?.map((e) => ImgModel.fromJson(e as Map<String, dynamic>))
|
||
|
.toList(),
|
||
|
);
|
||
|
}
|