TGetAttestationDocumentBody.fromJson constructor

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

Implementation

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