SigningOutput constructor

SigningOutput({
  1. List<int>? id,
  2. List<int>? signature,
  3. List<int>? refBlockBytes,
  4. List<int>? refBlockHash,
  5. String? json,
  6. SigningError? error,
  7. String? errorMessage,
})

Implementation

factory SigningOutput({
  $core.List<$core.int>? id,
  $core.List<$core.int>? signature,
  $core.List<$core.int>? refBlockBytes,
  $core.List<$core.int>? refBlockHash,
  $core.String? json,
  $0.SigningError? error,
  $core.String? errorMessage,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (signature != null) {
    $result.signature = signature;
  }
  if (refBlockBytes != null) {
    $result.refBlockBytes = refBlockBytes;
  }
  if (refBlockHash != null) {
    $result.refBlockHash = refBlockHash;
  }
  if (json != null) {
    $result.json = json;
  }
  if (error != null) {
    $result.error = error;
  }
  if (errorMessage != null) {
    $result.errorMessage = errorMessage;
  }
  return $result;
}