| 1234567891011121314151617181920 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'contact_list_response.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- ContactListResponse _$ContactListResponseFromJson(Map<String, dynamic> json) =>
- ContactListResponse(
- (json['list'] as List<dynamic>?)
- ?.map((e) => ContactInfo.fromJson(e as Map<String, dynamic>))
- .toList(),
- );
- Map<String, dynamic> _$ContactListResponseToJson(
- ContactListResponse instance) =>
- <String, dynamic>{
- 'list': instance.list,
- };
|