// GENERATED CODE - DO NOT MODIFY BY HAND part of 'order_first_check_response.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** OrderFirstCheckResponse _$OrderFirstCheckResponseFromJson( Map json) => OrderFirstCheckResponse( json['showInvite'] as bool, json['showEvaluate'] as bool, (json['days'] as num).toInt(), ); Map _$OrderFirstCheckResponseToJson( OrderFirstCheckResponse instance) => { 'showInvite': instance.showInvite, 'showEvaluate': instance.showEvaluate, 'days': instance.days, };