// GENERATED CODE - DO NOT MODIFY BY HAND part of 'resource.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** Resource _$ResourceFromJson(Map json) => Resource( resType: (json['res_type'] as num?)?.toInt(), resNativeDraw: json['res_native_draw'] == null ? null : ResNativeDraw.fromJson( json['res_native_draw'] as Map), ); Map _$ResourceToJson(Resource instance) => { 'res_type': instance.resType, 'res_native_draw': instance.resNativeDraw, };