UUserJson.fromMap constructor

UUserJson.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UUserJson.fromMap(Map<String, dynamic> json) => UUserJson(
  fcmToken: json["fcmToken"],
  weight: json["weight"]?.toDouble(),
  height: json["height"]?.toDouble(),
  fatherName: json["fatherName"],
  nationalCardFrontRejectionReason: json["nationalCardFrontRejectionReason"],
  nationalCardBackRejectionReason: json["nationalCardBackRejectionReason"],
  birthCertificateFirstRejectionReason: json["birthCertificateFirstRejectionReason"],
  birthCertificateSecondRejectionReason: json["birthCertificateSecondRejectionReason"],
  birthCertificateThirdRejectionReason: json["birthCertificateThirdRejectionReason"],
  birthCertificateForthRejectionReason: json["birthCertificateForthRejectionReason"],
  birthCertificateFifthRejectionReason: json["birthCertificateFifthRejectionReason"],
  visualAuthenticationRejectionReason: json["visualAuthenticationRejectionReason"],
  eSignatureRejectionReason: json["eSignatureRejectionReason"],
  detail1: json["detail1"],
  detail2: json["detail2"],
);