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.
24 lines
991 B
24 lines
991 B
2 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'mapping.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
FilesSyncMapping _$FilesSyncMappingFromJson(Map<String, dynamic> json) => FilesSyncMapping(
|
||
|
accountId: json['accountId'] as String,
|
||
|
appId: json['appId'] as String,
|
||
|
journal: SyncJournal.fromJson(json['journal'] as Map<String, dynamic>),
|
||
|
remotePath: Uri.parse(json['remotePath'] as String),
|
||
|
localPath: FilesSyncMapping._directoryFromJson(json['localPath'] as String),
|
||
|
);
|
||
|
|
||
|
Map<String, dynamic> _$FilesSyncMappingToJson(FilesSyncMapping instance) => <String, dynamic>{
|
||
|
'accountId': instance.accountId,
|
||
|
'appId': instance.appId,
|
||
|
'journal': instance.journal,
|
||
|
'remotePath': instance.remotePath.toString(),
|
||
|
'localPath': FilesSyncMapping._directoryToJson(instance.localPath),
|
||
|
};
|