effectiveAmount property

BigInt get effectiveAmount

Get effective total amount

Implementation

BigInt get effectiveAmount {
  if (outputs != null && outputs!.isNotEmpty) {
    return outputs!.fold(BigInt.zero, (sum, o) => sum + o.amount);
  }
  return amount;
}