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
754 B
24 lines
754 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'exclude_phone_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
ExcludePhoneModel _$ExcludePhoneModelFromJson(Map<String, dynamic> json) =>
|
|
ExcludePhoneModel(
|
|
id: json['id'] as int,
|
|
phone: json['phone'] as String,
|
|
remark: json['remark'] as String,
|
|
address: json['address'] as String,
|
|
);
|
|
|
|
Map<String, dynamic> _$ExcludePhoneModelToJson(ExcludePhoneModel instance) =>
|
|
<String, dynamic>{
|
|
'id': instance.id,
|
|
'phone': instance.phone,
|
|
'remark': instance.remark,
|
|
'address': instance.address,
|
|
};
|