mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
19 lines
582 B
Dart
19 lines
582 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'device_token.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
DeviceToken _$DeviceTokenFromJson(Map<String, dynamic> json) => DeviceToken(
|
|
device: json['device'] as String,
|
|
token: json['token'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$DeviceTokenToJson(DeviceToken instance) =>
|
|
<String, dynamic>{
|
|
'device': instance.device,
|
|
'token': instance.token,
|
|
};
|