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