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.
18 lines
641 B
18 lines
641 B
2 years ago
|
|
||
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
part of 'sms_content_model.dart';
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
SmsContentModel _$SmsContentModelFromJson(Map<String, dynamic> json) => SmsContentModel(
|
||
|
id: json['id'] as int,
|
||
|
content: json['content'] as String,
|
||
|
isChecked: json['is_checked'] as int,
|
||
|
);
|
||
|
|
||
|
Map<String, dynamic> _$SmsContentModelToJson(SmsContentModel instance) => <String, dynamic>{
|
||
|
'id': instance.id,
|
||
|
'content': instance.content,
|
||
|
'is_checked':instance.isChecked,
|
||
|
};
|