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.

17 lines
584 B

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'notice_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
NoticeModel _$NoticeModelFromJson(Map<String, dynamic> json) => NoticeModel(
id: json['id'] as int,
type: json['type'] as int,
status: json['status'] as int,
title: json['title'] as String,
content: json['content'] as String,
sendDate: json['sendDate'] as String,
jumpId: json['jumpId'] as int,
);