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.
19 lines
668 B
19 lines
668 B
2 years ago
|
// 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,
|
||
|
);
|
||
|
|
||
|
Map<String, dynamic> _$ExcludePhoneModelToJson(ExcludePhoneModel instance) => <String, dynamic>{
|
||
|
'id': instance.id,
|
||
|
'phone': instance.phone,
|
||
|
'remark': instance.remark,
|
||
|
};
|