CreateProofRequest constructor
CreateProofRequest({
- Struct? document,
- JsonWebKey? key,
- LdSuite? suite,
Implementation
factory CreateProofRequest({
$0.Struct? document,
$1.JsonWebKey? key,
LdSuite? suite,
}) {
final _result = create();
if (document != null) {
_result.document = document;
}
if (key != null) {
_result.key = key;
}
if (suite != null) {
_result.suite = suite;
}
return _result;
}