toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    if (agreement != null) r'agreement': agreement,
    if (givenName != null) r'givenName': givenName,
    if (familyName != null) r'familyName': familyName,
    if (email != null) r'email': email,
    if (jobTitle != null) r'jobTitle': jobTitle,
    if (image != null) r'image': image,
    if (optIn != null) r'optIn': optIn,
    if (preferences != null) r'preferences': preferences,
    if (telephone != null) r'telephone': telephone,
  };
}