// GENERATED CODE - DO NOT MODIFY BY HAND part of 'pendant.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** Pendant _$PendantFromJson(Map json) => Pendant( pid: (json['pid'] as num?)?.toInt(), name: json['name'] as String?, image: json['image'] as String?, expire: (json['expire'] as num?)?.toInt(), ); Map _$PendantToJson(Pendant instance) => { 'pid': instance.pid, 'name': instance.name, 'image': instance.image, 'expire': instance.expire, };