totalOutputValue property

BigInt get totalOutputValue

Implementation

BigInt get totalOutputValue {
  return outputs.fold(
    BigInt.zero,
    (prev, element) => prev + element.value,
  );
}