SigningOutput constructor

SigningOutput({
  1. List<int>? signature,
  2. List<int>? blockHash,
  3. String? json,
})

Implementation

factory SigningOutput({
  $core.List<$core.int>? signature,
  $core.List<$core.int>? blockHash,
  $core.String? json,
}) {
  final _result = create();
  if (signature != null) {
    _result.signature = signature;
  }
  if (blockHash != null) {
    _result.blockHash = blockHash;
  }
  if (json != null) {
    _result.json = json;
  }
  return _result;
}