v1GetAttestationDocumentRequest.fromJson constructor

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

Implementation

factory v1GetAttestationDocumentRequest.fromJson(Map<String, dynamic> json) {
  final _organizationId = json['organizationId'] as String;
  final _enclaveType = json['enclaveType'] as String;
  return v1GetAttestationDocumentRequest(
    organizationId: _organizationId,
    enclaveType: _enclaveType,
  );
}