CreateProofResponse constructor

CreateProofResponse({
  1. Struct? signedDocument,
})

Implementation

factory CreateProofResponse({
  $0.Struct? signedDocument,
}) {
  final _result = create();
  if (signedDocument != null) {
    _result.signedDocument = signedDocument;
  }
  return _result;
}