18 lines
526 B
Dart
18 lines
526 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'listFilesParams.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
ListFilesParams _$ListFilesParamsFromJson(Map<String, dynamic> json) =>
|
|
ListFilesParams(
|
|
json['path'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$ListFilesParamsToJson(ListFilesParams instance) =>
|
|
<String, dynamic>{
|
|
'path': instance.path,
|
|
};
|