configs_request.g.dart 594 B

12345678910111213141516171819
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'configs_request.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. ConfigsRequest _$ConfigsRequestFromJson(Map<String, dynamic> json) =>
  7. ConfigsRequest(
  8. ids: (json['ids'] as List<dynamic>)
  9. .map((e) => (e as num).toInt())
  10. .toList(),
  11. );
  12. Map<String, dynamic> _$ConfigsRequestToJson(ConfigsRequest instance) =>
  13. <String, dynamic>{
  14. 'ids': instance.ids,
  15. };