-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathkeys.g.dart
More file actions
31 lines (25 loc) · 942 Bytes
/
keys.g.dart
File metadata and controls
31 lines (25 loc) · 942 Bytes
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
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'keys.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
PublicKey _$PublicKeyFromJson(Map<String, dynamic> json) => PublicKey(
id: (json['id'] as num?)?.toInt(),
key: json['key'] as String?,
title: json['title'] as String?,
);
Map<String, dynamic> _$PublicKeyToJson(PublicKey instance) => <String, dynamic>{
'id': instance.id,
'key': instance.key,
'title': instance.title,
};
CreatePublicKey _$CreatePublicKeyFromJson(Map<String, dynamic> json) =>
CreatePublicKey(
json['title'] as String?,
json['key'] as String?,
);
Map<String, dynamic> _$CreatePublicKeyToJson(CreatePublicKey instance) =>
<String, dynamic>{
'title': instance.title,
'key': instance.key,
};