request_friend_list_response.g.dart 784 B

1234567891011121314151617181920212223
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'request_friend_list_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. RequestFriendListResponse _$RequestFriendListResponseFromJson(
  7. Map<String, dynamic> json) =>
  8. RequestFriendListResponse(
  9. (json['count'] as num).toInt(),
  10. (json['list'] as List<dynamic>?)
  11. ?.map((e) => RequestFriendInfo.fromJson(e as Map<String, dynamic>))
  12. .toList(),
  13. );
  14. Map<String, dynamic> _$RequestFriendListResponseToJson(
  15. RequestFriendListResponse instance) =>
  16. <String, dynamic>{
  17. 'count': instance.count,
  18. 'list': instance.list,
  19. };