IdentityVerificationReportOrId.fromJson constructor
IdentityVerificationReportOrId.fromJson(
- Object? json
Implementation
factory IdentityVerificationReportOrId.fromJson(Object? json) {
if (json is String) {
return IdentityVerificationReportId(id: json);
}
return IdentityVerificationReport.fromJson(json);
}