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.
aku_new_community/lib/models/news/news_detail_model.g.dart

19 lines
665 B

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'news_detail_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
NewsDetailModel _$NewsDetailModelFromJson(Map<String, dynamic> json) =>
NewsDetailModel(
id: json['id'] as int,
code: json['code'] as String,
title: json['title'] as String,
content: json['content'] as String,
newsCategoryName: json['newsCategoryName'] as String,
createName: json['createName'] as String,
createDate: json['createDate'] as String,
);