-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathaddBlogModels.g.dart
32 lines (28 loc) · 1007 Bytes
/
addBlogModels.g.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'addBlogModels.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
AddBlogModel _$AddBlogModelFromJson(Map<String, dynamic> json) {
return AddBlogModel(
coverImage: json['coverImage'] as String,
count: json['count'] as int,
share: json['share'] as int,
comment: json['comment'] as int,
id: json['_id'] as String,
username: json['username'] as String,
body: json['body'] as String,
title: json['title'] as String,
);
}
Map<String, dynamic> _$AddBlogModelToJson(AddBlogModel instance) =>
<String, dynamic>{
'coverImage': instance.coverImage,
'count': instance.count,
'share': instance.share,
'comment': instance.comment,
'_id': instance.id,
'username': instance.username,
'title': instance.title,
'body': instance.body,
};