| 1234567891011121314151617181920212223 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'request_friend_list_response.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- RequestFriendListResponse _$RequestFriendListResponseFromJson(
- Map<String, dynamic> json) =>
- RequestFriendListResponse(
- (json['count'] as num).toInt(),
- (json['list'] as List<dynamic>?)
- ?.map((e) => RequestFriendInfo.fromJson(e as Map<String, dynamic>))
- .toList(),
- );
- Map<String, dynamic> _$RequestFriendListResponseToJson(
- RequestFriendListResponse instance) =>
- <String, dynamic>{
- 'count': instance.count,
- 'list': instance.list,
- };
|