merge branches
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'contact_person.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
_ContactPerson _$ContactPersonFromJson(Map<String, dynamic> json) =>
|
||||
_ContactPerson(
|
||||
firstName: json['first_name'] as String?,
|
||||
lastName: json['last_name'] as String?,
|
||||
fullName: json['full_name'] as String?,
|
||||
position: json['position'] as String?,
|
||||
email: json['email'] as String?,
|
||||
phone: json['phone'] as String?,
|
||||
mobile: json['mobile'] as String?,
|
||||
isPrimary: json['is_primary'] as bool?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$ContactPersonToJson(_ContactPerson instance) =>
|
||||
<String, dynamic>{
|
||||
'first_name': instance.firstName,
|
||||
'last_name': instance.lastName,
|
||||
'full_name': instance.fullName,
|
||||
'position': instance.position,
|
||||
'email': instance.email,
|
||||
'phone': instance.phone,
|
||||
'mobile': instance.mobile,
|
||||
'is_primary': instance.isPrimary,
|
||||
};
|
||||
Reference in New Issue
Block a user