CreateProofRequest constructor

CreateProofRequest({
  1. Struct? document,
  2. JsonWebKey? key,
  3. 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;
}