-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathuser_profile_data.dart
114 lines (101 loc) · 3.75 KB
/
user_profile_data.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// GENERATED CODE - DO NOT MODIFY BY HAND
import 'package:flutter/foundation.dart';
import 'package:json_annotation/json_annotation.dart';
import 'package:model_generator_example/model/ogm.dart';
import 'package:model_generator_example/model/user/person/person.dart';
import 'package:model_generator_example/model/user/testing.dart';
part 'user_profile_data.g.dart';
@JsonSerializable(explicitToJson: true)
@immutable
class UserProfileData {
@JsonKey(name: 'firstName', required: true, includeIfNull: false)
final String firstName;
@JsonKey(name: 'lastName', required: true, includeIfNull: false)
final String lastName;
@JsonKey(name: 'standardLanguage', required: true, includeIfNull: false)
final String standardLanguage;
@JsonKey(name: 'mainAccountNumber', required: true, includeIfNull: false)
final String mainAccountNumber;
@JsonKey(name: 'legalEmail', required: true, includeIfNull: false)
final String legalEmail;
@JsonKey(name: 'phones', required: true, includeIfNull: false)
final Testing phones;
@JsonKey(name: 'legalAddress', required: true, includeIfNull: false)
final OGM legalAddress;
@JsonKey(name: 'offTrack', includeIfNull: false)
final List<String>? offTrack;
@JsonKey(name: 'onTrack')
final List<OGM>? onTrack;
@JsonKey(name: 'persons', includeIfNull: false)
final List<Person>? persons;
@JsonKey(name: 'personsById', includeIfNull: false)
final Map<String, Person>? personsById;
const UserProfileData({
required this.firstName,
required this.lastName,
required this.standardLanguage,
required this.mainAccountNumber,
required this.legalEmail,
required this.phones,
required this.legalAddress,
this.offTrack,
this.onTrack,
this.persons,
this.personsById,
});
factory UserProfileData.fromJson(Map<String, dynamic> json) =>
_$UserProfileDataFromJson(json);
Map<String, dynamic> toJson() => _$UserProfileDataToJson(this);
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is UserProfileData &&
runtimeType == other.runtimeType &&
firstName == other.firstName &&
lastName == other.lastName &&
standardLanguage == other.standardLanguage &&
mainAccountNumber == other.mainAccountNumber &&
legalEmail == other.legalEmail &&
phones == other.phones &&
legalAddress == other.legalAddress &&
offTrack == other.offTrack &&
onTrack == other.onTrack &&
persons == other.persons &&
personsById == other.personsById;
@override
int get hashCode =>
firstName.hashCode ^
lastName.hashCode ^
standardLanguage.hashCode ^
mainAccountNumber.hashCode ^
legalEmail.hashCode ^
phones.hashCode ^
legalAddress.hashCode ^
offTrack.hashCode ^
onTrack.hashCode ^
persons.hashCode ^
personsById.hashCode;
@override
String toString() => 'UserProfileData{'
'firstName: $firstName, '
'lastName: $lastName, '
'standardLanguage: $standardLanguage, '
'mainAccountNumber: $mainAccountNumber, '
'legalEmail: $legalEmail, '
'phones: $phones, '
'legalAddress: $legalAddress, '
'offTrack: $offTrack, '
'onTrack: $onTrack, '
'persons: $persons, '
'personsById: $personsById'
'}';
}
const deserializeUserProfileData = UserProfileData.fromJson;
Map<String, dynamic> serializeUserProfileData(UserProfileData object) =>
object.toJson();
List<UserProfileData> deserializeUserProfileDataList(
List<Map<String, dynamic>> jsonList) =>
jsonList.map(UserProfileData.fromJson).toList();
List<Map<String, dynamic>> serializeUserProfileDataList(
List<UserProfileData> objects) =>
objects.map((object) => object.toJson()).toList();