// GENERATED CODE - DO NOT MODIFY BY HAND part of 'like_archive.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** LikeArchive _$LikeArchiveFromJson(Map json) => LikeArchive( count: (json['count'] as num?)?.toInt(), item: json['item'] as List?, ); Map _$LikeArchiveToJson(LikeArchive instance) => { 'count': instance.count, 'item': instance.item, };