Input$UserWithTargetInput constructor
Input$UserWithTargetInput({
- String? email,
- String? username,
- Input$IPhoneInput? phone,
- String? permission,
- required String password,
- Input$PictureInput? picture,
- List<
Input$PictureInput> ? pictures, - List<
Input$PictureInput> ? covers, - String? firstName,
- Enum$UserStatus? status,
- String? title,
- String? about,
- String? lastName,
- Enum$MaritalStatus? maritalStatus,
- Enum$Gender? gender,
- List<
String> ? languages, - List<
Input$UserEducationInput> ? education, - List<
Input$UserWorkInput> ? work, - List<
String> ? lived, - List<
String> ? hobbies, - List<
String> ? interests, - bool? isMailValid,
- bool? plugged,
- DateTime? dateOfBirth,
- List<
Input$SocialValueInput> ? chatContact, - List<
Input$SocialValueInput> ? socialMedia, - String? nationality,
- String? locale,
- String? placeOfBirth,
- List<
Input$FullAddressInput> ? residentialAddress, - List<
Input$FullAddressInput> ? shippingAddress, - List<
Input$FullAddressInput> ? billingAddress, - Enum$MobileThemesEnum? mobileTheme,
- Enum$SourcesEnum? source,
- bool? newsletterSubs,
- List<
Input$UserCustomInput> ? custom, - required List<
Enum$UserRole> roles, - List<
Enum$App> ? apps, - String? phoneNumber,
- required Input$TargetACIInput target,
- String? subject,
Implementation
factory Input$UserWithTargetInput({
String? email,
String? username,
Input$IPhoneInput? phone,
String? permission,
required String password,
Input$PictureInput? picture,
List<Input$PictureInput>? pictures,
List<Input$PictureInput>? covers,
String? firstName,
Enum$UserStatus? status,
String? title,
String? about,
String? lastName,
Enum$MaritalStatus? maritalStatus,
Enum$Gender? gender,
List<String>? languages,
List<Input$UserEducationInput>? education,
List<Input$UserWorkInput>? work,
List<String>? lived,
List<String>? hobbies,
List<String>? interests,
bool? isMailValid,
bool? plugged,
DateTime? dateOfBirth,
List<Input$SocialValueInput>? chatContact,
List<Input$SocialValueInput>? socialMedia,
String? nationality,
String? locale,
String? placeOfBirth,
List<Input$FullAddressInput>? residentialAddress,
List<Input$FullAddressInput>? shippingAddress,
List<Input$FullAddressInput>? billingAddress,
Enum$MobileThemesEnum? mobileTheme,
Enum$SourcesEnum? source,
bool? newsletterSubs,
List<Input$UserCustomInput>? custom,
required List<Enum$UserRole> roles,
List<Enum$App>? apps,
String? phoneNumber,
required Input$TargetACIInput target,
String? subject,
}) =>
Input$UserWithTargetInput._({
if (email != null) r'email': email,
if (username != null) r'username': username,
if (phone != null) r'phone': phone,
if (permission != null) r'permission': permission,
r'password': password,
if (picture != null) r'picture': picture,
if (pictures != null) r'pictures': pictures,
if (covers != null) r'covers': covers,
if (firstName != null) r'firstName': firstName,
if (status != null) r'status': status,
if (title != null) r'title': title,
if (about != null) r'about': about,
if (lastName != null) r'lastName': lastName,
if (maritalStatus != null) r'maritalStatus': maritalStatus,
if (gender != null) r'gender': gender,
if (languages != null) r'languages': languages,
if (education != null) r'education': education,
if (work != null) r'work': work,
if (lived != null) r'lived': lived,
if (hobbies != null) r'hobbies': hobbies,
if (interests != null) r'interests': interests,
if (isMailValid != null) r'isMailValid': isMailValid,
if (plugged != null) r'plugged': plugged,
if (dateOfBirth != null) r'dateOfBirth': dateOfBirth,
if (chatContact != null) r'chatContact': chatContact,
if (socialMedia != null) r'socialMedia': socialMedia,
if (nationality != null) r'nationality': nationality,
if (locale != null) r'locale': locale,
if (placeOfBirth != null) r'placeOfBirth': placeOfBirth,
if (residentialAddress != null)
r'residentialAddress': residentialAddress,
if (shippingAddress != null) r'shippingAddress': shippingAddress,
if (billingAddress != null) r'billingAddress': billingAddress,
if (mobileTheme != null) r'mobileTheme': mobileTheme,
if (source != null) r'source': source,
if (newsletterSubs != null) r'newsletterSubs': newsletterSubs,
if (custom != null) r'custom': custom,
r'roles': roles,
if (apps != null) r'apps': apps,
if (phoneNumber != null) r'phoneNumber': phoneNumber,
r'target': target,
if (subject != null) r'subject': subject,
});