ProofOp constructor

ProofOp({
  1. String? type,
  2. List<int>? key,
  3. List<int>? data,
})

Implementation

factory ProofOp({
  $core.String? type,
  $core.List<$core.int>? key,
  $core.List<$core.int>? data,
}) {
  final _result = create();
  if (type != null) {
    _result.type = type;
  }
  if (key != null) {
    _result.key = key;
  }
  if (data != null) {
    _result.data = data;
  }
  return _result;
}