UserIndividual.fromJson constructor

UserIndividual.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory UserIndividual.fromJson(Map<String, dynamic> json) {
  return UserIndividual(
    userId: json['userId'],
    fullName: json['fullName'],
    emailAddress: json['emailAddress'],
    password: json['password'],
    contactNumber: json['contactNumber'],
  );
}