configs_response.g.dart 634 B

12345678910111213141516171819
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'configs_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. ConfigsResponse _$ConfigsResponseFromJson(Map<String, dynamic> json) =>
  7. ConfigsResponse(
  8. list: (json['list'] as List<dynamic>?)
  9. ?.map((e) => ConfigBean.fromJson(e as Map<String, dynamic>))
  10. .toList(),
  11. );
  12. Map<String, dynamic> _$ConfigsResponseToJson(ConfigsResponse instance) =>
  13. <String, dynamic>{
  14. 'list': instance.list,
  15. };