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