outputText method

  1. @override
void outputText(
  1. StringBuffer buffer, {
  2. UncertaintyFormat uncertFormat = UncertaintyFormat.none,
  3. bool symbols = true,
  4. NumberFormat? numberFormat,
})
override

Appends a String representation of this Quantity to the buffer using the preferred units and number format. If no preferred units have been specified, then MKS units are used. Uncertainty in the value of the Quantity is optionally shown as a plus/minus value in the same units.

Implementation

@override
void outputText(StringBuffer buffer,
        {UncertaintyFormat uncertFormat = UncertaintyFormat.none,
        bool symbols = true,
        NumberFormat? numberFormat}) =>
    snapshot.outputText(buffer,
        uncertFormat: uncertFormat,
        symbols: symbols,
        numberFormat: numberFormat);