totalValue property

  1. @TagNumber.new(20)
double get totalValue

Stores the total value of the debit note (as a double, which requires no adjustments)

Implementation

@$pb.TagNumber(20)
$core.double get totalValue => $_getN(15);
  1. @TagNumber.new(20)
set totalValue (double value)

Implementation

@$pb.TagNumber(20)
set totalValue($core.double value) => $_setDouble(15, value);