IdentityVerificationReportOrId.fromJson constructor

IdentityVerificationReportOrId.fromJson(
  1. Object? json
)

Implementation

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