Создание коллекций
This commit is contained in:
23
lib/models/collection_dto.g.dart
Normal file
23
lib/models/collection_dto.g.dart
Normal file
@@ -0,0 +1,23 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'collection_dto.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_$CollectionDtoImpl _$$CollectionDtoImplFromJson(Map<String, dynamic> json) =>
|
||||
_$CollectionDtoImpl(
|
||||
desc: json['desc'] as String,
|
||||
title: json['title'] as String,
|
||||
isPublic: json['isPublic'] as bool,
|
||||
avatar: json['avatar'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$$CollectionDtoImplToJson(_$CollectionDtoImpl instance) =>
|
||||
<String, dynamic>{
|
||||
'desc': instance.desc,
|
||||
'title': instance.title,
|
||||
'isPublic': instance.isPublic,
|
||||
'avatar': instance.avatar,
|
||||
};
|
||||
Reference in New Issue
Block a user