order_first_check_response.g.dart 596 B

12345678910111213141516171819
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'order_first_check_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. OrderFirstCheckResponse _$OrderFirstCheckResponseFromJson(
  7. Map<String, dynamic> json) =>
  8. OrderFirstCheckResponse(
  9. json['first'] as bool,
  10. );
  11. Map<String, dynamic> _$OrderFirstCheckResponseToJson(
  12. OrderFirstCheckResponse instance) =>
  13. <String, dynamic>{
  14. 'first': instance.first,
  15. };