v1GetAttestationDocumentResponse.fromJson constructor

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

Implementation

factory v1GetAttestationDocumentResponse.fromJson(Map<String, dynamic> json) {
  final _attestationDocument = json['attestationDocument'] as String;
  return v1GetAttestationDocumentResponse(
    attestationDocument: _attestationDocument,
  );
}