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.
27 lines
943 B
27 lines
943 B
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'notifications.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
DecryptedSubject _$DecryptedSubjectFromJson(Map<String, dynamic> json) => DecryptedSubject( |
|
nid: json['nid'] as int?, |
|
app: json['app'] as String?, |
|
subject: json['subject'] as String?, |
|
type: json['type'] as String?, |
|
id: json['id'] as String?, |
|
delete: json['delete'] as bool?, |
|
deleteAll: json['delete-all'] as bool?, |
|
); |
|
|
|
Map<String, dynamic> _$DecryptedSubjectToJson(DecryptedSubject instance) => <String, dynamic>{ |
|
'nid': instance.nid, |
|
'app': instance.app, |
|
'subject': instance.subject, |
|
'type': instance.type, |
|
'id': instance.id, |
|
'delete': instance.delete, |
|
'delete-all': instance.deleteAll, |
|
};
|
|
|