toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    'profile': profile,
    'email': email,
    'isEmailValid': isEmailValid,
    'isEmailVerified': isEmailVerified,
    'ageRange': ageRange,
    'birthyear': birthyear,
    'birthday': birthday,
    'birthdayType': birthdayType,
    'gender': gender,
    'phoneNumber': phoneNumber,
    'ci': ci,
    'ciAuthenticatedAt': ciAuthenticatedAt,
    'profileNeedsAgreement': profileNeedsAgreement,
    'emailNeedsAgreement': emailNeedsAgreement,
    'ageRangeNeedsAgreement': ageRangeNeedsAgreement,
    'birthyearNeedsAgreement': birthyearNeedsAgreement,
    'birthdayNeedsAgreement': birthdayNeedsAgreement,
    'genderNeedsAgreement': genderNeedsAgreement,
    'phoneNumberNeedsAgreement': phoneNumberNeedsAgreement,
    'ciNeedsAgreement': ciNeedsAgreement,
  };
}