You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
775 B
24 lines
775 B
1 month ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'second_card.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
SecondCard _$SecondCardFromJson(Map<String, dynamic> json) => SecondCard()
|
||
|
..id = json['id'] as String?
|
||
|
..phone = json['phone'] as String?
|
||
|
..nickname = json['nickname'] as String?
|
||
|
..headimg = json['headimg'] as String?
|
||
|
..isAdd = json['isAdd'] as bool?;
|
||
|
|
||
|
Map<String, dynamic> _$SecondCardToJson(SecondCard instance) =>
|
||
|
<String, dynamic>{
|
||
|
'id': instance.id,
|
||
|
'phone': instance.phone,
|
||
|
'nickname': instance.nickname,
|
||
|
'headimg': instance.headimg,
|
||
|
'isAdd': instance.isAdd,
|
||
|
};
|