selfprivacy.org.app/lib/logic/models/json/device_token.g.dart
NaiJi 129c1bb4c6 Refactor infrastructure
Co-authored-by: Inex Code <inex.code@selfprivacy.org>
2022-05-14 05:54:40 +03:00

13 lines
421 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,
);